1 {if $smarty.request.logsess}
5 <th colspan="2">{$msg_session_properties}</th>
8 <td><strong>{$msg_user}</strong></td>
9 <td>{$session.username} {if $session.suer}(suid by {$session.suer}){/if} [<a href="?logauth={$session.auth}&loguser={$session.username}">user's log</a>]</td>
12 <td><strong>{$msg_host}</strong></td>
13 <td>{$session.host} / {$session.ip}</td>
16 <td><strong>{$msg_browser}</strong></td>
17 <td>{$session.browser}</td>
26 <th>{$msg_action}</th>
29 {foreach from=$events item=myevent}
31 <td class="logdate">{$myevent.stamp|date_format:"%Y-%m-%d %H:%M:%S"}</td>
32 <td class="logmain">{$myevent.text}</td>
33 <td>{$myevent.data|escape}</td>
41 <form name="filter" method="post" action="{$smarty.server.PHP_SELF}">
44 <th colspan="2">{$msg_filter_by}</th>
47 <td><strong>{$msg_date}</strong></td>
50 <select name="year" onChange="this.form.submit()">
51 {html_options options=$years selected=$year}
54 <select name="month" onChange="this.form.submit()">
55 {html_options options=$months selected=$month}
58 <select name="day" onChange="this.form.submit()">
59 {html_options options=$days selected=$day}
64 <td><strong>{$msg_user}</strong></td>
66 <input type="text" name="loguser" value="{$loguser}" />
67 {html_options name="logauth" options=$auths selected=$logauth}
68 <input type="submit" value="{$msg_submit}" />
81 <th>{$msg_summary}</th>
82 <th>{$msg_actions}</th>
84 {counter start=0 assign=cnt print=0}
85 {foreach from=$sessions item=mysess}
86 <tr{if $cnt % 2} class="odd"{/if}>
87 <td class="logdate">{$mysess.start|date_format:"%Y-%m-%d %H:%M:%S"}</td>
88 <td class="logmain">{$mysess.username} <span class="auth">({$mysess.lauth})</span></td>
89 <td class="logevents">
90 {foreach from=$mysess.events item=myevent}{$myevent} {/foreach}
93 {foreach from=$mysess.actions item=myaction}
94 {a class="action" lnk=$myaction}
102 <td>{$msg_nofilters}</td>