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
|
<html>
<head>
<title>User Management</title>
</head>
<body>
<font size=+2>{%object_name%}</font><br>
<br>
<table cellspacing=1 cellpadding=2 border=0 bgcolor=black>
<tbody>
<tr bgcolor="navy">
<td></td>
<td><b><font color=white>Username</font></b></td>
<td><b><font color=white>First name</font></b></td>
<td><b><font color=white>Middle name</font></b></td>
<td><b><font color=white>Last name</font></b></td>
<td><b><font color=white>Unix user ID</font></b></td>
<td><b><font color=white>Unix group ID</font></b></td>
</tr>
{%users:
<tr bgcolor="{%varcolor:#DDDDFF/#CCCCFF%}">
<td valign="top" nowrap>
<a href="fr://edit_user?parent_window={%parent_window%}&object_address={%object_address%}"><img src="{%fr_home%}/html-templates/view.png"></a>
{%NotSystem:
<a href="fr://drop_user?parent_window={%parent_window%}&object_address={%object_address%}"><img src="{%fr_home%}/html-templates/drop.png"></a>%}
</td>
<td nowrap valign="top">{%userinfo:username%}</td>
<td nowrap valign="top">{%userinfo:first_name%}</td>
<td nowrap valign="top">{%userinfo:middle_name%}</td>
<td nowrap valign="top">{%userinfo:last_name%}</td>
<td nowrap valign="top" align="right">{%userinfo:unix_user%}</td>
<td nowrap valign="top" align="right">{%userinfo:unix_group%}</td>
</tr>%}
</tbody>
</table>
<br><br>
<a href="fr://add_user?parent_window={%parent_window%}&object_address={%object_address%}">Add user</a>
<br>
</body>
</html>
|