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

Version Path
kuztuscms-0.0.10 app/views/kuztuscms/users/index.html.erb
kuztuscms-0.0.9 app/views/kuztuscms/users/index.html.erb
kuztuscms-0.0.8 app/views/kuztuscms/users/index.html.erb
kuztuscms-0.0.7 app/views/kuztuscms/users/index.html.erb
kuztuscms-0.0.6 app/views/kuztuscms/users/index.html.erb
kuztuscms-0.0.5 app/views/kuztuscms/users/index.html.erb
kuztuscms-0.0.4 app/views/kuztuscms/users/index.html.erb
kuztuscms-0.0.3 app/views/kuztuscms/users/index.html.erb
kuztuscms-0.0.2 app/views/kuztuscms/users/index.html.erb
kuztuscms-0.0.1 app/views/kuztuscms/users/index.html.erb