14 lines
278 B
Text
14 lines
278 B
Text
<p style="color: green"><%= notice %></p>
|
|
|
|
<h1>Commands</h1>
|
|
|
|
<div id="commands">
|
|
<% @commands.each do |command| %>
|
|
<%= render command %>
|
|
<p>
|
|
<%= link_to "Show this command", command %>
|
|
</p>
|
|
<% end %>
|
|
</div>
|
|
|
|
<%= link_to "New command", new_command_path %>
|