You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
zncstrap/modules/listsockets/tmpl/index.tmpl

40 lines
1.0 KiB

<? I18N znc-listsockets ?>
<? INC Header.tmpl ?>
<div class="container col-md-10 col-md-offset-1">
<div class="panel panel-default">
<div class="panel-heading">Listsockets</div>
<div class="panel-body">
<table class="table table-bordered table-hover">
<thead>
<tr>
<td><? FORMAT "Name" ?></td>
<td><? FORMAT "Created" ?></td>
<td><? FORMAT "State" ?></td>
<td><? FORMAT "SSL" ?></td>
<td><? FORMAT "Local" ?></td>
<td><? FORMAT "Remote" ?></td>
<td><? FORMAT "Data In" ?></td>
<td><? FORMAT "Data Out" ?></td>
</tr>
</thead>
<tbody>
<? LOOP SocketsLoop ?>
<tr>
<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>
</div>
</div>
</div>
<? INC Footer.tmpl ?>