0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-19 19:22:14 +02:00
postfixadmin/templates/main.tpl
Christian Boltz 76f66ac8db *.lang:
- rename some $PALANG variables once more because smarty breaks when
  using "-"
  - add-alias => add_alias
  - add-alias-domain => add_alias_domain
  - add-mailbox => add_mailbox
  - email-address-already-exists => email_address_already_exists
  - change-password => change_password
  - password-again => password_again

model/*, setup.php, templates/*
- update to use the changed $PALANG variables


git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@1511 a1433add-5e2c-0410-b055-b7f2511e0802
2013-07-28 22:51:28 +00:00

36 lines
1.1 KiB
Smarty

<!-- {$smarty.template} -->
<div id="main_menu">
<table>
<tr>
<td nowrap="nowrap"><a target="_top" href="{#url_list_domain#}">{$PALANG.pMenu_overview}</a></td>
<td>{$PALANG.pMain_overview}</td>
</tr>
<tr>
<td nowrap="nowrap"><a target="_top" href="{#url_create_alias#}">{$PALANG.add_alias}</a></td>
<td>{$PALANG.pMain_create_alias}</td>
</tr>
<tr>
<td nowrap="nowrap"><a target="_top" href="{#url_create_mailbox#}">{$PALANG.add_mailbox}</a></td>
<td>{$PALANG.pMain_create_mailbox}</td>
</tr>
{if $CONF.sendmail==='YES'}
<tr>
<td nowrap="nowrap"><a target="_top" href="{#url_sendmail#}">{$PALANG.pMenu_sendmail}</a></td>
<td>{$PALANG.pMain_sendmail}</td>
</tr>
{/if}
<tr>
<td nowrap="nowrap"><a target="_top" href="{#url_password#}">{$PALANG.pMenu_password}</a></td>
<td>{$PALANG.pMain_password}</td>
</tr>
<tr>
<td nowrap="nowrap"><a target="_top" href="{#url_viewlog#}">{$PALANG.pMenu_viewlog}</a></td>
<td>{$PALANG.pMain_viewlog}</td>
</tr>
<tr>
<td nowrap="nowrap"><a target="_top" href="{#url_logout#}">{$PALANG.pMenu_logout}</a></td>
<td>{$PALANG.pMain_logout}</td>
</tr>
</table>
</div>