Files
sx-fc/app/views/inventory/inventory_definitions/index.html.erb
2017-10-30 10:27:54 +06:30

27 lines
709 B
Plaintext
Executable File

<div class="container-fluid">
<p id="notice"><%= notice %></p>
<h1><%= t :inventory_definitions %></h1>
<table>
<thead>
<tr>
<th colspan="3"></th>
</tr>
</thead>
<tbody>
<% @inventory_definitions.each do |inventory_definition| %>
<tr>
<td><%= link_to t("views.btn.show"), inventory_definition %></td>
<td><%= link_to t("views.btn.edit"), edit_inventory_definition_path(inventory_definition) %></td>
<td><%= link_to t("views.btn.delete"), inventory_definition, method: :delete, data: { confirm: 'Are you sure?' } %></td>
</tr>
<% end %>
</tbody>
</table>
<br>
<%= link_to 'New Inventory Definition', new_inventory_definition_path %>
</div>