root/app/views/admin/techniques/index.rhtml @ edf9058a
b689e231 | Marc Dequènes (Duck) | <h2><%= _("List of Techniques") %></h2>
|
|
<p>
|
|||
<table>
|
|||
<tr><th><%= _("Name") %></th><th><%= _("Acronym") %></th><th><%= _("Actions") %></th></tr>
|
|||
<% resource_model.find(:all, :order => "name ASC").each do |technique| %>
|
|||
<tr><td><%= technique.name %></td><td><%= technique.acronym %></td><td class="actions"><%= display_standard_item_actions(technique) %></td></tr>
|
|||
<% end %>
|
|||
</table>
|
|||
<%= display_new_action %>
|
|||
</p>
|