mirror of
https://github.com/symkat/MeshMage.git
synced 2025-01-06 12:37:12 +08:00
31 lines
812 B
Text
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>
|
|
%% }
|
|
|
|
%% }
|