0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-19 19:22:14 +02:00
postfixadmin/templates/overview-get.tpl
Christian Boltz d0a3cd62e8 overview-get.tpl:
- removed a space that caused a smarty syntax error


git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@890 a1433add-5e2c-0410-b055-b7f2511e0802
2010-12-02 21:38:51 +00:00

29 lines
967 B
Smarty

<div id="overview">
<form name="frmOverview" method="get" action="">
<select class="flat" name="domain" onchange="this.form.submit();">
{$select_options}
</select>
<input class="button" type="submit" name="go" value="{$PALANG.pOverview_button}" />
</form>
{#form_search#}
</div>
<table id="overview_table">
<tr>
<td colspan="5"><h3>{$PALANG.pOverview_title}</h3></td>
</tr>
{#tr_header#}
<td>{$PALANG.pOverview_get_domain}</td>
<td>{$PALANG.pOverview_get_aliases}</td>
<td>{$PALANG.pOverview_get_mailboxes}</td>
{if $CONF.quota===YES}<td>{$PALANG.pOverview_get_quota}</td>{/if}
</tr>
{foreach from=$domain_properties item=domain}
{#tr_hilightoff#}
<td><a href="{#url_list_virtual#}?domain={$domain.domain|escape:"url"}">{$domain.domain}</a></td>
<td>{$domain.alias_count} / {$domain.aliases}</td>
<td>{$domain.mailbox_count} / {$domain.mailboxes}</td>
{if $CONF.quota===YES}<td>{$domain.maxquota}</td>{/if}
</tr>
{/foreach}
</table>