Sha256: 5b6641f36c217f7e2091dfa323d59bbea0e87c917d8d376d064ac0b7d0f1d159

Contents?: true

Size: 1.14 KB

Versions: 12

Compression:

Stored size: 1.14 KB

Contents

<% if groups.empty? %>
  <div class="well"><p><%= t('kadmin.nothing_to_show') %></p></div>
<% else %>
  <table class='table table-hover table-striped'>
    <thead>
      <tr>
        <th style='width: 1%'>ID</th>
        <th style='width: 40%'>Name</th>
        <th style='width: 40%'>Owner</th>
        <th style='width: 18%'>Registered</th>
        <th style='width: 1%'>Actions</th>
      </tr>
    </thead>
    <tbody>
      <% groups.each do |group| %>
      <tr>
        <td><%= link_to(group.id, admin_group_path(group.id)) %></td>
        <td><%= link_to(group.name, admin_group_path(group.id)) %></td>
        <td><%= group.owner.nil? ? '' : link_to(group.owner.full_name, admin_person_path(group.owner.id)) %></td>
        <td><%= group.created_at %></td>
        <td class="text-center">
          <%=
            dropdown('Actions...', [
              link_to('Edit', edit_admin_group_path(group.id)),
              link_to('Delete', admin_group_path(group.id), method: :delete, data: { confirm: "Are you sure you want to delete [#{group.name}]" })
            ])
          %>
        </td>
      </tr>
      <% end %>
    </tbody>
  </table>
<% end %>

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
kadmin-0.6.8 test/dummy/app/views/admin/groups/_table.html.erb
kadmin-0.6.7 test/dummy/app/views/admin/groups/_table.html.erb
kadmin-0.6.6 test/dummy/app/views/admin/groups/_table.html.erb
kadmin-0.6.5 test/dummy/app/views/admin/groups/_table.html.erb
kadmin-0.6.4 test/dummy/app/views/admin/groups/_table.html.erb
kadmin-0.6.3 test/dummy/app/views/admin/groups/_table.html.erb
kadmin-0.6.1 test/dummy/app/views/admin/groups/_table.html.erb
kadmin-0.5.7 test/dummy/app/views/admin/groups/_table.html.erb
kadmin-0.5.6 test/dummy/app/views/admin/groups/_table.html.erb
kadmin-0.4.2 test/dummy/app/views/admin/groups/_table.html.erb
kadmin-0.4.1 test/dummy/app/views/admin/groups/_table.html.erb
kadmin-0.4.0 test/dummy/app/views/admin/groups/_table.html.erb