Sha256: 3f6c206bd5bd8e2f47409eeafa62f2cac7c5f170386cb8f55d7ca7e030715cb0
Contents?: true
Size: 571 Bytes
Versions: 1
Compression:
Stored size: 571 Bytes
Contents
<%= will_paginate @users %> <table class="list"> <thead> <tr> <th><%= t('.name') %></th> <th><%= t('.email') %></th> <th><%= t('.options') %></th> </tr> </thead> <tbody> <% @users.each do |user| %> <tr> <td><%= link_to highlight(user.full_name, @search_filter.query), user_path(user) %></td> <td><%= mail_to user.email, highlight(user.email, @search_filter.query) %></td> <td><%= link_to t(".edit"), edit_user_path(user) %></td> </tr> <% end %> </tbody> </table> <%= will_paginate @users %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tiny_core_users-0.0.1 | rails_generators/tiny_user/templates/admin/users/_index.html.erb |