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.

58 lines
1.6 KiB
Smarty

<table class="vpslist">
<tr>
<th></th>
<th><%!list-column-hostname></th>
<th><%!list-column-platform></th>
<th><%!list-column-node></th>
<th><%!list-column-disk></th>
<th><%!list-column-ram></th>
<th><%!list-column-template></th>
</tr>
<%foreach container in containers>
<tr class="clickable" data-url="/<%?container[id]>/">
<td class="container-status">
<%if container[status] == running>
<img src="/images/icon_online.png" alt="<%!list-status-running>">
<%/if><%if container[status] == stopped>
<img src="/images/icon_offline.png" alt="<%!list-status-stopped>">
<%/if><%if container[status] == suspended>
<img src="/images/icon_suspended.png" alt="<%!list-status-suspended>">
<%/if>
</td>
<td>
<a href="/<%?container[id]>/">
<%?container[hostname]>
</a>
</td>
<td>
<a href="/<%?container[id]>/">
<%if container[virtualization-type] == 1>
OpenVZ
<%/if><%if container[virtualization-type] == 2>
Xen PV
<%/if><%if container[virtualization-type] == 3>
Xen HVM
<%/if><%if container[virtualization-type] == 4>
KVM
<%/if>
</a>
</td>
<td>
<a href="/<%?container[id]>/">
<span class="nodename"><%?container[node]></span>
<span class="hostname">(<%?container[node-hostname]>)</span>
</a>
</td>
<td>
<%?container[diskspace]>
<span class="unit"><%?container[diskspace-unit]></span>
</td>
<td>
<%?container[guaranteed-ram]>
<span class="unit"><%?container[guaranteed-ram-unit]></span>
</td>
<td><%?container[template]></td>
</tr>
<%/foreach>
</table>