Sha256: d442ef994884339236e993617b0b49e87ecd3c436073bd2f6ff3a69359715a9a
Contents?: true
Size: 780 Bytes
Versions: 16
Compression:
Stored size: 780 Bytes
Contents
<table class="list"> <thead> <th><%= t 'administrators.index_id' %></th> <th><%= t 'administrators.index_name' %></th> <th><%= t 'administrators.index_email' %></th> <th><%= t 'system.index_remove' %></th> </thead> <% @administrators.each do |administrator| %> <tr class="<%= cycle 'odd_line', 'even_line' %>" > <td align="center"><%= link_to administrator.id, edit_a_administrator_path(administrator) %></td> <td><%= link_to administrator.name, edit_a_administrator_path(administrator) %></td> <td><%= administrator.email %></td> <td><%= link_to t('system.index_remove_label'), [:a, administrator], :method => :delete, :confirm => t('system.index_confirm_deletion') %></td> </tr> <% end %> </table> <%= pagination_footer @administrators %>
Version data entries
16 entries across 16 versions & 1 rubygems