index.html.slim
461 Bytes
div style='margin-top: 100px'
h2
| Groups
= link_to 'New Group', new_admin_group_path, style: 'float: right'
- attrs = %i[name pool_name users_count]
table
thead
- attrs.each do |a|
th = Group.human_attribute_name(a)
th
tbody
tbody
- @object_collection.each do |model|
- attrs.each do |a|
td = model.send(a)
td
= link_to 'Edit', edit_admin_group_path(model)