|
@@ -73,9 +73,10 @@ ${ layout.menubar(section='organizations') }
|
|
|
<div class="select-all hue-checkbox fa"></div>
|
|
<div class="select-all hue-checkbox fa"></div>
|
|
|
</th>
|
|
</th>
|
|
|
%endif
|
|
%endif
|
|
|
- <th>${_('Organization Name')}</th>
|
|
|
|
|
|
|
+ <th>${_('Name')}</th>
|
|
|
<th>${_('Members')}</th>
|
|
<th>${_('Members')}</th>
|
|
|
- <th>${_('Group & Permissions Counts')}</th>
|
|
|
|
|
|
|
+ <th>${_('Groups')}</th>
|
|
|
|
|
+ <th>${_('Permissions')}</th>
|
|
|
</tr>
|
|
</tr>
|
|
|
</thead>
|
|
</thead>
|
|
|
<tbody>
|
|
<tbody>
|
|
@@ -91,7 +92,8 @@ ${ layout.menubar(section='organizations') }
|
|
|
<strong>${ group.name }</strong>
|
|
<strong>${ group.name }</strong>
|
|
|
</td>
|
|
</td>
|
|
|
<td>${ ', '.join([group_user.username for group_user in group.organizationuser_set.all()]) }</td>
|
|
<td>${ ', '.join([group_user.username for group_user in group.organizationuser_set.all()]) }</td>
|
|
|
- <td>${ group.organizationgroup_set.count() } ${ group.huepermission_set.count() }</td>
|
|
|
|
|
|
|
+ <td>${ ', '.join([org.name for org in group.organizationgroup_set.all()]) }</td>
|
|
|
|
|
+ <td>${ ', '.join([perm.connector.name for perm in group.huepermission_set.all()]) }</td>
|
|
|
</tr>
|
|
</tr>
|
|
|
% endfor
|
|
% endfor
|
|
|
</tbody>
|
|
</tbody>
|
|
@@ -158,6 +160,7 @@ ${ layout.menubar(section='organizations') }
|
|
|
% endif
|
|
% endif
|
|
|
{ "sWidth": "20%" },
|
|
{ "sWidth": "20%" },
|
|
|
{ "sWidth": "20%" },
|
|
{ "sWidth": "20%" },
|
|
|
|
|
+ { "sWidth": "20%" },
|
|
|
null
|
|
null
|
|
|
],
|
|
],
|
|
|
"oLanguage": {
|
|
"oLanguage": {
|