Sha256: d098dcb587396d974eff8272e2de77f4a5b1546413c2f2bf0cff318c098a0423

Contents?: true

Size: 452 Bytes

Versions: 5

Compression:

Stored size: 452 Bytes

Contents

<h1><%= t('users.index.title')%></h1>

<p><%= link_to "Ajouter un utilisateur", new_admin_user_path, :class => "button" %></p>

<table>
  <tr>
    <th><%= t('activerecord.attributes.user.email') %></th>
    <th><%= t('users.index.roles') %></th>
  </tr>
  <% for user in @users %>
  <tr>
    <td><%= link_to user.email, edit_admin_user_path(user) %></td>
    <td><%= display_user_roles(user) %></td>
  </tr>
  <% end %>
</table>

<%= paginate @users %>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
merrycms-0.1.7 app/views/admin/users/index.html.erb
merrycms-0.1.4 app/views/admin/users/index.html.erb
merrycms-0.1.2 app/views/admin/users/index.html.erb
merrycms-0.1.1 app/views/admin/users/index.html.erb
merrycms-0.1.0 app/views/admin/users/index.html.erb