28 lines
474 B
HTML
28 lines
474 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>{{ app_name | capitalize }} Status</title>
|
||
|
<style>
|
||
|
table,
|
||
|
th,
|
||
|
td {
|
||
|
border: 1px solid black;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<table>
|
||
|
<tr>
|
||
|
<th>App</th>
|
||
|
<th>Status</th>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<th>{{ app_name }}</th>
|
||
|
<th>{{ status }}</th>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</body>
|
||
|
</html>
|
||
|
</html>
|