Frontend Changes + Model angepasst

This commit is contained in:
2025-10-29 12:11:03 +01:00
parent f113147972
commit e1684d4484
6 changed files with 395 additions and 14 deletions

View File

@@ -12,20 +12,22 @@
<div >
<table class="ServiceList">
<tr>
<th>Service</th>
<th>HostServer</th>
<th>Status</th>
<th>Deployment</th>
<th></th>
<th>Container-ID</th>
<th>Name</th>
<th>Image</th>
<th>Host-ID</th>
<th>Aktionen</th>
</tr>
@foreach (Container container in Model.Containers)
{
<tr class="ServiceRow">
<td>@container.ContainerId</td>
<td>@container.Name</td>
<td><a class="ServiceEntry" href="/Server/Details/${containerId}">@container.ServerId</a></td>
<td>nicht automatisiert</td>
<td>Docker</td>
<td>@container.Image</td>
<!-- TODO: Link Hardcoded -->
<td><a class="ServiceEntry" href="/Server/Details/2">@container.ServerId</a></td>
<td>nicht verfügbar</td>
</tr>
}
</table>