35 lines
1.0 KiB
Plaintext
35 lines
1.0 KiB
Plaintext
@model Watcher.ViewModels.ContainerOverviewViewModel
|
|
@{
|
|
ViewData["Title"] = "Containerübersicht";
|
|
}
|
|
|
|
<head>
|
|
<link rel="stylesheet" href="~/css/main.css" />
|
|
<link rel="stylesheet" href="~/css/services-overview.css" />
|
|
</head>
|
|
|
|
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6">
|
|
<div >
|
|
<table class="ServiceList">
|
|
<tr>
|
|
<th>Service</th>
|
|
<th>HostServer</th>
|
|
<th>Status</th>
|
|
<th>Deployment</th>
|
|
<th></th>
|
|
|
|
</tr>
|
|
@foreach (Container container in Model.Containers)
|
|
{
|
|
<tr class="ServiceRow">
|
|
<td>@container.Name</td>
|
|
<td><a class="ServiceEntry" href="/Server/Details/${containerId}">@container.ServerId</a></td>
|
|
<td>nicht automatisiert</td>
|
|
<td>Docker</td>
|
|
</tr>
|
|
}
|
|
</table>
|
|
</div>
|
|
|
|
</div>
|