summaryrefslogtreecommitdiff
path: root/app/views/groups/_index_core.html.haml
blob: d99874a582f8e2e841a433c97865387ae65320d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
%table.table.table-striped
  %tr
    %th= t('groups.index.name')
    %th= t('groups.index.active')
    %th= t('groups.index.comment')

  
  - for group in groups
    %tr
      %td= group.name
      %td= group.active
      %td= group.comment
      =render :partial => 'shared/index_view_edit_destroy_part', :locals => {:child => group}