20 lines
370 B
HTML
20 lines
370 B
HTML
![]() |
{extends "idf/gadmin/usher/base.html"}
|
||
|
|
||
|
{block docclass}yui-t3{assign $inUsherServerConnections=true}{/block}
|
||
|
|
||
|
{block body}
|
||
|
<table class="recent-issues">
|
||
|
<tr>
|
||
|
<th>{trans "address"}</th>
|
||
|
<th>{trans "port"}</th>
|
||
|
</tr>
|
||
|
{foreach $connections as $connection}
|
||
|
<tr>
|
||
|
<td>{$connection.address}</td>
|
||
|
<td>{$connection.port}</td>
|
||
|
</tr>
|
||
|
{/foreach}
|
||
|
</table>
|
||
|
{/block}
|
||
|
|