RSS Git Download  Clone
Raw Blame History
[% META title = 'Test » DB Status' %]
<!-- BEGIN [% template.name %] -->
    <h2>DB status:</h2>
    
    [% 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; 
            NEXT IF row.last.match('PROCESSLIST'); # skip current request %]
            <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>
<!-- END [% template.name %] -->