MeshMage/Web/templates/manual/index.html.tx
2021-06-13 14:16:54 -07:00

31 lines
812 B
Text

%% cascade _base::layout { title => "Manual Configuration",
%% sb_active => 'deploy_manual'
%% }
%% override panel -> {
%% if ( $nodes.size() ) {
<h2 style="margin-top: 2em" class="h2">Machines</h2>
<table class="table">
<thead>
<tr>
<th>Hostname</th>
<th>Network</th>
<th>Nebula IP</th>
<th>Public IP</th>
</tr>
</thead>
<tbody>
%% for $nodes -> $node {
<tr>
<td><a href="/manual/[% $node.id %]">[% $node.hostname %]</a></td>
<td>[% $node.network.name %]</td>
<td>[% $node.nebula_ip %]</td>
<td>[% $node.public_ip %]</td>
</tr>
%% }
</tbody>
</table>
%% }
%% }