103 lines
2.0 KiB
HTML
103 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Deployments</title>
|
|
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
padding: 30px;
|
|
background: #f5f5f5;
|
|
}
|
|
|
|
h1 {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
background: white;
|
|
}
|
|
|
|
th, td {
|
|
padding: 12px;
|
|
border-bottom: 1px solid #ddd;
|
|
text-align: left;
|
|
}
|
|
|
|
th {
|
|
background: #222;
|
|
color: white;
|
|
}
|
|
|
|
tr:hover {
|
|
background: #f0f0f0;
|
|
}
|
|
|
|
.success {
|
|
color: green;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.failed {
|
|
color: red;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.running {
|
|
color: orange;
|
|
font-weight: bold;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Deployments</h1>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>App</th>
|
|
<th>Kind</th>
|
|
<th>Status</th>
|
|
<th>Started</th>
|
|
<th>Finished</th>
|
|
<th>Return Code</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
{% for deploy in deployments %}
|
|
<tr>
|
|
<td>
|
|
<a href="/portal/deployments/{{ deploy.id }}">
|
|
#{{ deploy.id }}
|
|
</a>
|
|
</td>
|
|
|
|
<td>{{ deploy.app_id }}</td>
|
|
|
|
<td>{{ deploy.kind }}</td>
|
|
|
|
<td class="{{ deploy.status }}">
|
|
{{ deploy.status }}
|
|
</td>
|
|
|
|
<td>{{ deploy.started_at }}</td>
|
|
|
|
<td>{{ deploy.finished_at or '-' }}</td>
|
|
|
|
<td>{{ deploy.returncode or '-' }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
</html>
|