Atlas-Config-Generator/src/app/pages/config/servers/servers.component.html

19 lines
No EOL
629 B
HTML

<div class="mt-3 mb-3">
<h2>Cell Grid</h2>
<table class="table">
<thead>
<tr>
<th>#</th>
<th *ngFor="let x of xArray">{{ x }}</th>
</tr>
</thead>
<tbody *ngFor="let y of xArray">
<tr>
<th>{{ y }}</th>
<td *ngFor="let x of xArray"><a [routerLink]="['/config','server', serverLookup[x][y]]">{{ serverLookup[x][y] }}</a></td>
</tr>
</tbody>
</table>
<h2 *ngIf="unknownServers.length > 0">Cells Outside Grid</h2>
<button class="btn btn-warning" *ngFor="let u of unknownServers">{{ u }}</button>
</div>