0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-19 19:22:14 +02:00
postfixadmin/templates/users_main.tpl
Greg 339aa49f82 End user improvements
Overview no longer lists aliases for mailboxes


git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@8 a1433add-5e2c-0410-b055-b7f2511e0802
2007-06-21 20:40:42 +00:00

27 lines
940 B
Smarty

<div id="main_menu">
<table>
<tr>
<td>&nbsp;</td>
<td><?php print $_SESSION['userid']['username']; ?></td>
</tr>
<?php if ($CONF['vacation'] == 'YES') { ?>
<tr>
<td nowrap><a target="_top" href="vacation.php"><?php print $PALANG['pUsersMenu_vacation']; ?></a></td>
<td><?php print $tummVacationtext; ?></td>
</tr>
<?php } ?>
<tr>
<td nowrap><a target="_top" href="edit-alias.php"><?php print $PALANG['pUsersMenu_edit_alias']; ?></a></td>
<td><?php print $PALANG['pUsersMain_edit_alias']; ?></td>
</tr>
<tr>
<td nowrap><a target="_top" href="password.php"><?php print $PALANG['pUsersMenu_password']; ?></a></td>
<td><?php print $PALANG['pUsersMain_password']; ?></td>
</tr>
<tr>
<td nowrap><a target="_top" href="logout.php"><?php print $PALANG['pMenu_logout']; ?></a></td>
<td><?php print $PALANG['pMain_logout']; ?></td>
</tr>
</table>
</div>