2014-05-06 06:41:54 +04:00
|
|
|
<table id="userlist" class="hascontrols grid" data-groups="<?php p($_['allGroups']);?>">
|
2014-02-19 19:53:29 +04:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2015-04-04 03:11:31 +03:00
|
|
|
<?php if ($_['enableAvatars']): ?>
|
|
|
|
<th id="headerAvatar" scope="col"></th>
|
|
|
|
<?php endif; ?>
|
|
|
|
<th id="headerName" scope="col"><?php p($l->t('Username'))?></th>
|
2016-07-28 12:30:36 +03:00
|
|
|
<th id="headerDisplayName" scope="col"><?php p($l->t( 'Full name' )); ?></th>
|
2015-04-04 03:07:05 +03:00
|
|
|
<th id="headerPassword" scope="col"><?php p($l->t( 'Password' )); ?></th>
|
|
|
|
<th class="mailAddress" scope="col"><?php p($l->t( 'Email' )); ?></th>
|
|
|
|
<th id="headerGroups" scope="col"><?php p($l->t( 'Groups' )); ?></th>
|
2015-04-04 03:11:31 +03:00
|
|
|
<?php if(is_array($_['subadmins']) || $_['subadmins']): ?>
|
2016-07-28 12:30:36 +03:00
|
|
|
<th id="headerSubAdmins" scope="col"><?php p($l->t('Group admin for')); ?></th>
|
2015-04-04 03:11:31 +03:00
|
|
|
<?php endif;?>
|
2015-04-04 03:07:05 +03:00
|
|
|
<th id="headerQuota" scope="col"><?php p($l->t('Quota')); ?></th>
|
2016-07-28 12:30:36 +03:00
|
|
|
<th class="storageLocation" scope="col"><?php p($l->t('Storage location')); ?></th>
|
|
|
|
<th class="userBackend" scope="col"><?php p($l->t('User backend')); ?></th>
|
|
|
|
<th class="lastLogin" scope="col"><?php p($l->t('Last login')); ?></th>
|
2014-02-19 19:53:29 +04:00
|
|
|
<th id="headerRemove"> </th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2014-12-11 17:37:56 +03:00
|
|
|
<!-- the following <tr> is used as a template for the JS part -->
|
|
|
|
<tr style="display:none">
|
2015-04-04 03:11:31 +03:00
|
|
|
<?php if ($_['enableAvatars']): ?>
|
|
|
|
<td class="avatar"><div class="avatardiv"></div></td>
|
|
|
|
<?php endif; ?>
|
2015-04-04 03:07:05 +03:00
|
|
|
<th class="name" scope="row"></th>
|
2016-06-23 14:39:28 +03:00
|
|
|
<td class="displayName"><span></span> <img class="action"
|
2014-02-19 19:53:29 +04:00
|
|
|
src="<?php p(image_path('core', 'actions/rename.svg'))?>"
|
|
|
|
alt="<?php p($l->t("change full name"))?>" title="<?php p($l->t("change full name"))?>"/>
|
|
|
|
</td>
|
2016-06-23 14:39:28 +03:00
|
|
|
<td class="password"><span>●●●●●●●</span> <img class="action"
|
2014-02-19 19:53:29 +04:00
|
|
|
src="<?php print_unescaped(image_path('core', 'actions/rename.svg'))?>"
|
|
|
|
alt="<?php p($l->t("set new password"))?>" title="<?php p($l->t("set new password"))?>"/>
|
|
|
|
</td>
|
2016-06-23 14:39:28 +03:00
|
|
|
<td class="mailAddress"><span></span><div class="loading-small hidden"></div> <img class="action"
|
2014-12-15 14:43:42 +03:00
|
|
|
src="<?php p(image_path('core', 'actions/rename.svg'))?>"
|
|
|
|
alt="<?php p($l->t('change email address'))?>" title="<?php p($l->t('change email address'))?>"/>
|
|
|
|
</td>
|
2014-12-11 17:37:56 +03:00
|
|
|
<td class="groups"></td>
|
2015-04-04 03:11:31 +03:00
|
|
|
<?php if(is_array($_['subadmins']) || $_['subadmins']): ?>
|
|
|
|
<td class="subadmins"></td>
|
|
|
|
<?php endif;?>
|
2014-02-19 19:53:29 +04:00
|
|
|
<td class="quota">
|
2015-04-04 03:11:31 +03:00
|
|
|
<select class="quota-user" data-inputtitle="<?php p($l->t('Please enter storage quota (ex: "512 MB" or "12 GB")')) ?>">
|
2014-12-11 17:37:56 +03:00
|
|
|
<option value='default'>
|
2014-02-19 19:53:29 +04:00
|
|
|
<?php p($l->t('Default'));?>
|
|
|
|
</option>
|
2014-12-11 17:37:56 +03:00
|
|
|
<option value='none'>
|
2014-02-19 19:53:29 +04:00
|
|
|
<?php p($l->t('Unlimited'));?>
|
|
|
|
</option>
|
|
|
|
<?php foreach($_['quota_preset'] as $preset):?>
|
2014-12-11 17:37:56 +03:00
|
|
|
<option value='<?php p($preset);?>'>
|
|
|
|
<?php p($preset);?>
|
|
|
|
</option>
|
2014-02-19 19:53:29 +04:00
|
|
|
<?php endforeach;?>
|
|
|
|
<option value='other' data-new>
|
2014-12-11 17:37:56 +03:00
|
|
|
<?php p($l->t('Other'));?> ...
|
2014-02-19 19:53:29 +04:00
|
|
|
</option>
|
|
|
|
</select>
|
|
|
|
</td>
|
2014-12-11 17:37:56 +03:00
|
|
|
<td class="storageLocation"></td>
|
2014-12-12 12:21:50 +03:00
|
|
|
<td class="userBackend"></td>
|
2014-12-11 17:37:56 +03:00
|
|
|
<td class="lastLogin"></td>
|
|
|
|
<td class="remove"></td>
|
2014-02-19 19:53:29 +04:00
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|