2013-02-19 06:35:27 +01:00

21 lines
658 B
Smarty

{***************************************************************************
* You can find the license in the docs directory
*
* Unicode Reminder メモ
***************************************************************************}
{* OCSTYLE *}
<table class="table">
<tr><th>{t}ID{/t}</th><th>{t}Name{/t}</th><th>{t}Rights{/t}</th></tr>
{foreach from=$admins item=admin}
<tr>
<td>{$admin.id}</td>
<td><a href="viewprofile.php?userid={$admin.id}">{$admin.name}</a></td>
<td>{$admin.rights|escape}</td>
</tr>
{/foreach}
</table>
<p>&nbsp;</p>
<p>{t}Admin rights can be granted and revoked by a system administrator with database access.{/t}</p>