Sha256: 120f3b5d4e5baaab315942813873c54c35d4184a9ccb9b1fcfab60fdf7ae0d8a
Contents?: true
Size: 512 Bytes
Versions: 13
Compression:
Stored size: 512 Bytes
Contents
<!-- List of all available models --> <h2><%= Typus::I18n.t("Users") %> <%= Typus.user_class.count %></h2> <table class="table"> <thead> <tr> <th><%= Typus::I18n.t("User") %></th> <th><%= Typus::I18n.t("Status") %></th> <th><%= Typus::I18n.t("Last logged in") %></th> </tr> </thead> <% Typus.user_class.limit(5).each do |user| %> <tr> <td><%= user.email %></td> <td><%= user.status %></td> <td><%= user.created_at %></td> </tr> <% end %> </table>
Version data entries
13 entries across 13 versions & 1 rubygems