Hacking towards the second.py functionality

This commit is contained in:
Luke Murphy
2020-07-05 02:41:06 +02:00
parent b914d1ae73
commit 4adac0ec20
14 changed files with 217 additions and 23 deletions

View File

@ -0,0 +1,27 @@
<!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>