|
{trans("Domain:")}
|
{$account.domain}
|
|
{trans("Owner:")}
|
{if !$account.ownerid}{trans("SYSTEM ACCOUNT")}
{else}{$account.customername}{/if}
|
{if $account.realname}
|
{trans("First/last or Company name:")}
|
{$account.realname}
|
{/if}
|
{trans("Homedir:")}
|
{$account.home}
|
|
{trans("Expiration date:")}
|
{if $account.expdate}{$account.expdate|date_format:"%Y/%m/%d"}{else}{trans("not expire")}{/if}
|
{if $account.mail_forward}
|
{trans("Forward e-mail:")}
|
{$account.mail_forward}
|
{/if}
{if $account.mail_bcc}
|
{trans("BCC e-mail:")}
|
{$account.mail_bcc}
|
{/if}
|
|
{trans("Type/Quota:")}
|
{foreach $_ACCOUNTTYPES as $typeidx => $type}
{if ($account.type & $typeidx) == $typeidx}
{$type.label}
|
[ |
{$idx='quota_'|cat:$type.alias}
{$account[$idx]} MB
|
] |
{/if}
{/foreach}
|
{if $account.description}
|
{$account.description|replace:"\n":" "}
|
|
{/if}
|