2018-01-11 14:13:10 +03:00
|
|
|
<table id="userlist" class="grid" data-groups="<?php p($_['allGroups']);?>">
|
2014-02-19 19:53:29 +04:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2015-04-04 03:11:31 +03:00
|
|
|
<th id="headerAvatar" scope="col"></th>
|
|
|
|
<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>
|
2016-07-08 14:22:34 +03:00
|
|
|
<th class="userActions"></th>
|
2014-02-19 19:53:29 +04:00
|
|
|
</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
|
|
|
<td class="avatar"><div class="avatardiv"></div></td>
|
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>
|
2016-08-23 18:22:10 +03:00
|
|
|
<td class="groups"><div class="groupsListContainer multiselect button"
|
|
|
|
><span class="title groupsList"></span><span class="icon-triangle-s"></span></div>
|
|
|
|
</td>
|
2015-04-04 03:11:31 +03:00
|
|
|
<?php if(is_array($_['subadmins']) || $_['subadmins']): ?>
|
2016-08-23 18:22:10 +03:00
|
|
|
<td class="subadmins"><div class="groupsListContainer multiselect button"
|
|
|
|
><span class="title groupsList"></span><span class="icon-triangle-s"></span></div>
|
|
|
|
</td>
|
2015-04-04 03:11:31 +03:00
|
|
|
<?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>
|
2017-09-27 17:35:33 +03:00
|
|
|
<progress class="quota-user-progress" value="" max="100"></progress>
|
2014-02-19 19:53:29 +04:00
|
|
|
</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>
|
2018-01-11 14:13:10 +03:00
|
|
|
<td class="userActions">
|
|
|
|
<div class="toggleUserActions">
|
|
|
|
<a class="action"><span class="icon-more"></span></a>
|
2018-02-18 15:43:56 +03:00
|
|
|
<div class="popovermenu">
|
2018-01-11 14:13:10 +03:00
|
|
|
<ul class="userActionsMenu">
|
|
|
|
<li>
|
|
|
|
<a href="#" class="menuitem action-togglestate permanent" data-action="togglestate"></a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a href="#" class="menuitem action-remove permanent" data-action="remove">
|
|
|
|
<span class="icon icon-delete"></span>
|
|
|
|
<span><?php p($l->t('Delete')); ?></span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
2016-07-08 14:22:34 +03:00
|
|
|
</div>
|
|
|
|
</td>
|
2014-02-19 19:53:29 +04:00
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2017-03-01 23:09:03 +03:00
|
|
|
|
|
|
|
<div class="emptycontent" style="display:none">
|
|
|
|
<div class="icon-search"></div>
|
2017-03-03 16:44:16 +03:00
|
|
|
<h2></h2>
|
2017-03-01 23:09:03 +03:00
|
|
|
</div>
|