Sha256: 7eacb24b7fcc8b1baff00af9ef12ea20294a9153b1cbbd54938b0a2cfe94cb02
Contents?: true
Size: 813 Bytes
Versions: 10
Compression:
Stored size: 813 Bytes
Contents
<h1>Users</h1> <table class="table table-striped"> <thead> <tr> <th>ID</th> <th>Username</th> <th>Email</th> <th>Created at</th> <th>Actions</th> </tr> </thead> <tbody> <% @users.each do |user| %> <tr> <td><%= user.id %></td> <td><%= link_to user.username, user_path(user) %></td> <td><%= user.email %></td> <td><%= user.created_at %></td> <td> <%= link_to 'Edit', kuztuscms.edit_user_path(user), :class => 'btn btn-mini' %> <%= link_to 'Destroy', kuztuscms.user_path(user), :method => :delete, :confirm => 'Are you sure?', :class => 'btn btn-mini btn-danger' %> </td> </tr> <% end %> </tbody> </table> <%= link_to 'New', kuztuscms.new_user_path, :class => 'btn btn-primary' %>
Version data entries
10 entries across 10 versions & 1 rubygems