You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
503 B
Smarty
26 lines
503 B
Smarty
12 years ago
|
<div class="toolbar">
|
||
12 years ago
|
<a href="/admin/nodes/add/">{%!toolbar-addnode}</a>
|
||
12 years ago
|
<div class="clear"></div>
|
||
|
</div>
|
||
|
|
||
12 years ago
|
<h2>{%!title-admin-nodelist}</h2>
|
||
|
|
||
12 years ago
|
<table class="vpslist">
|
||
|
<tr>
|
||
|
<th>{%!list-column-hostname}</th>
|
||
|
<th>{%!list-column-location}</th>
|
||
|
</tr>
|
||
|
{%foreach node in nodes}
|
||
|
<tr class="clickable" data-url="/admin/node/{%?node[id]}/">
|
||
|
<td>
|
||
|
<a href="/admin/node/{%?node[id]}/">
|
||
|
{%?node[hostname]}
|
||
|
</a>
|
||
|
</td>
|
||
|
<td>
|
||
|
{%?node[location]}
|
||
|
</td>
|
||
|
</tr>
|
||
|
{%/foreach}
|
||
|
</table>
|