aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/operations/index.html.erb
blob: 8bf9009e9e32217cf70e475963e0b17476a50c7e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<p style="color: green"><%= notice %></p>

<h1>Operations</h1>

<div id="operations">
  <% @operations.each do |operation| %>
    <%= render operation %>
    <p>
      <%= link_to "Show this operation", operation %>
    </p>
  <% end %>
</div>

<%= link_to "New operation", new_operation_path %>