foodsoft/app/views/admin/workgroups/_workgroups.html.haml

21 lines
693 B
Plaintext
Raw Normal View History

- if Workgroup.count > 20
= items_per_page
= pagination_links_remote @workgroups
%table.table.table-striped
%thead
%tr
2013-02-03 18:36:03 +01:00
%th= t '.name'
%th= t '.members'
%th= t 'admin.access_to'
2013-12-12 00:13:19 +01:00
%th= t 'ui.actions'
%tbody
- for workgroup in @workgroups
%tr
%td= link_to workgroup.name, [:admin, workgroup]
%td= workgroup.users.size
%td= format_roles(workgroup)
%td
= link_to t('ui.edit'), edit_admin_workgroup_path(workgroup), class: 'btn btn-mini'
= link_to t('ui.delete'), [:admin, workgroup], :confirm => t('admin.confirm', name: workgroup.name),
:method => :delete, class: 'btn btn-mini btn-danger'