winix/winixd/html/fun_account.html

48 lines
718 B
HTML

<div class="winix">
<h1>{account_header}</h1>
[if user_logged]
<table class="uk-table uk-table-divider uk-table-small uk-table-justify">
<tbody>
<tr>
<td class="uk-width-1-4">{account_logged_as}</td>
<td>[user_name]</td>
</tr>
[if user_super_user]
<tr>
<td>{account_admin}</td>
<td>{account_admin_yes}</td>
</tr>
[end]
[if false]
[# improve me]
<tr>
<td>{account_groups}</td>
<td>html, www, foo</td>
</tr>
[end]
<tr>
<td>{account_timezone}</td>
<td>[user_time_zone_name]</td>
</tr>
<tr>
<td>{account_language}</td>
<td>[user_locale_name]</td>
</tr>
</tbody>
</table>
[else]
<p>{account_not_logged}</p>
[end]
</div>