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.
21 lines
393 B
Smarty
21 lines
393 B
Smarty
<h2>{%!title-admin-nodelist}</h2>
|
|
|
|
<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>
|