mirror of
https://github.com/znc/znc.git
synced 2026-05-06 13:32:36 +02:00
33 lines
613 B
Cheetah
33 lines
613 B
Cheetah
<? INC Header.tmpl ?>
|
|
|
|
<table class="data">
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Created</th>
|
|
<th>State</th>
|
|
<th>SSL</th>
|
|
<th>Local</th>
|
|
<th>Remote</th>
|
|
<th>Data In</th>
|
|
<th>Data Out</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<? LOOP SocketsLoop ?>
|
|
<tr class="<? IF __EVEN__ ?>evenrow<? ELSE ?>oddrow<? ENDIF ?>">
|
|
<td><? VAR Name ?></td>
|
|
<td><? VAR Created ?></td>
|
|
<td><? VAR State ?></td>
|
|
<td><? VAR SSL ?></td>
|
|
<td><? VAR Local ?></td>
|
|
<td><? VAR Remote ?></td>
|
|
<td><? VAR In ?></td>
|
|
<td><? VAR Out ?></td>
|
|
</tr>
|
|
<? ENDLOOP ?>
|
|
</tbody>
|
|
</table>
|
|
|
|
<? INC Footer.tmpl ?>
|