This repository has been archived on 2020-09-13. You can view files and clone it, but cannot push or open issues or pull requests.
magic-app/magic_app/templates/app_status.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>