Files
oc-server3/htdocs/templates2/ocstyle/admins.tpl
T
following 31841aa0b9 content2-container and other layout element improvements
- removed float:left from content2-container; fixes #204
- changed section icons to paragraph signs in german TOS page
- added page title to admin list and DB maintainence
- added content2-container to some admin pages, to set right margin
2013-08-08 13:00:29 +02:00

30 lines
910 B
Smarty

{***************************************************************************
* You can find the license in the docs directory
*
* Unicode Reminder メモ
***************************************************************************}
{* OCSTYLE *}
<div class="content2-pagetitle">
<img src="resource2/{$opt.template.style}/images/misc/32x32-tools.png" style="align: left; margin-right: 10px;" width="32" height="32" alt="World" />
{t}OC-Admins{/t}
</div>
<div class="content2-container">
<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>
</div>