/usr/share/zentyal/templates/users/groups.mas is in zentyal-users 2.3.4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | <%args>
@groups => ();
</%args>
<%init>
use EBox::Gettext;
use EBox::Global;
my $groupsModel = EBox::Global->modInstance('users')->model('Groups');
</%init>
<h3><% __('Add Group') %></h3>
<form action='AddGroup' method='POST'>
<table class='formTable'>
<tr>
<td class='tright'>
<span class="ftitle">
<% __('Group name') %>:
</span>
</td>
<td>
<input type='text' class='inputText' name='groupname'>
</td>
</tr>
<tr>
<td class='tright'>
<span class="ftitle">
<% __('Comment') %>:
</span>
</td>
<td>
<input type='text' class='inputText' name='comment'>
<div class="comment">(<% __('Optional value') %>)</div>
</td>
</tr>
<tr>
<td></td>
<td>
<input class='inputButton' type='submit' name='addAndEdit'
value="<% __('Add and Edit') %>"
alt="<% __('Add and Edit') %>"/>
<input class='inputButton' type='submit' name='add'
value="<% __('Add') %>"
alt="<% __('Add') %>"/>
</td>
</tr>
</table>
</form>
<& '/ajax/tableBodyWithoutActions.mas', model => $groupsModel &>
|