44 lines
1.3 KiB
HTML
44 lines
1.3 KiB
HTML
<include href="header.html" />
|
|
|
|
<check if="isset(@users_array)">
|
|
<true>
|
|
<table>
|
|
<tr>
|
|
<th>Username</th>
|
|
<th>Password</th>
|
|
<th>Jailed</th>
|
|
<th>PHP Workers</th>
|
|
</tr>
|
|
|
|
<repeat group="{{ @users_array }}" value="{{ @userinfo }}">
|
|
|
|
<tr>
|
|
<td><a href="{{@BASE}}/Users/{{ @userinfo.username }}">{{ @userinfo.username }}</a></td>
|
|
<td><span class="hidden">{{ @userinfo.passwd }}</span></td>
|
|
<td>{{ @userinfo.jailed }}</td>
|
|
<td>{{ @userinfo.fpmmax }}</td>
|
|
</tr>
|
|
|
|
</repeat>
|
|
|
|
</table>
|
|
<p>
|
|
Select a <b>Username</b> name above for more details and options.<br>
|
|
<b>Username</b> is the system username that owns the website files.<br>
|
|
<!--<b>uid</b> is the system User ID assigned to this user on this server.<br>-->
|
|
<b>Password</b> is the unencrypted password for the user, if available. Scroll over field to reveal password.<br>
|
|
<b>Jailed</b> is a flag indicating if the user is jailed.<br>
|
|
<b>PHP Workers</b> is maximum number of PHP processes that this user can have running at one time.<br>
|
|
</p>
|
|
</true>
|
|
<false>
|
|
<p>There are no website system users on this server.</p>
|
|
</false>
|
|
</check>
|
|
|
|
<p>
|
|
<a href="{{@NAV.fullpath}}/Add">Add new User form</a>
|
|
</p>
|
|
|
|
<include href="footer.html" />
|