RSS Git Download  Clone
Raw Blame History
[% META title = 'Test » DB Status' %]

<h2>DB status:</h2>

<p class="indent">[current request de-emphasised]</p>

[% headers = [ 'Id' 'User' 'Host' 'db' 'Command' 'Time' 'State' 'Info' ] %]

<table class="indent">
    <tr>
        [% FOREACH h IN headers %]<th>[% h %]</th>[% END %]
    </tr>   
    [% FOREACH row IN list; class = row.last.match('PROCESSLIST') # de-emphasize
            ? 'grey' : 'normal'; # PROCESS dumper.tt dump = row %]
        <tr class="[% class %]">
        [% FOREACH entry IN row %]<td>[% entry %]</td>[% END %]
        </tr>
    [% END %]
</table>

<form action="[% c.query.self_url %]">
    <p>[% site.html.back_button %] <input type="submit" value="Refresh" /></p>
</form>