blob: 3a444bfc2a98ce12cb72e36c6574152411bd0f54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
%table.table.table-striped
%tr
%th
%th= t('groups.index.name')
%th= t('groups.index.comment')
- for group in groups
%tr
%td
-if group.active
%i.icon-ok
- else
%i.icon-ban-circle
%td= group.name
%td= group.comment
=render :partial => 'shared/index_view_edit_destroy_part', :locals => {:child => group}
|