0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-19 19:22:14 +02:00
postfixadmin/templates/viewlog.tpl
Christian Boltz dc782512a3 overview-get.tpl, viewlog.tpl:
- changed <h3> to <th>

overview-get.tpl:
- removed class="flat" from domain dropdown

This commit is part of the huge cleanup patch by Dale Blount (lnxus@SF),
https://sourceforge.net/tracker/?func=detail&atid=937966&aid=3370510&group_id=191583



git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@1109 a1433add-5e2c-0410-b055-b7f2511e0802
2011-07-22 20:59:41 +00:00

33 lines
1.1 KiB
Smarty

<div id="overview">
<form name="frmOverview" method="post" action="">
<select name="fDomain" onchange="this.form.submit();">{$select_options}</select>
<input class="button" type="submit" name="go" value="{$PALANG.pViewlog_button}" />
</form>
</div>
{if $tLog}
<table id="log_table">
<tr>
<th colspan="5">{$PALANG.pViewlog_welcome} {$fDomain}</th>
</tr>
{#tr_header#}
<td>{$PALANG.pViewlog_timestamp}</td>
<td>{$PALANG.pViewlog_username}</td>
<td>{$PALANG.pViewlog_domain}</td>
<td>{$PALANG.pViewlog_action}</td>
<td>{$PALANG.pViewlog_data}</td>
</tr>
{assign var="PALANG_pViewlog_data" value=$PALANG.pViewlog_data}
{foreach from=$tLog item=item}
{assign var=log_data value=$item.data|truncate:35:"...":true}
{assign var=item_data value=$item.data}
{$smarty.config.tr_hilightoff|replace:'>':" style=\"cursor:pointer;\" onclick=\"alert('$PALANG_pViewlog_data = $item_data')\">"}
<td nowrap="nowrap">{$item.timestamp}</td>
<td nowrap="nowrap">{$item.username}</td>
<td nowrap="nowrap">{$item.domain}</td>
<td nowrap="nowrap">{$item.action}</td>
<td nowrap="nowrap">{$log_data}</td>
</tr>
{/foreach}
</table>
{/if}