26 lines
748 B
HTML
26 lines
748 B
HTML
<!doctype html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{% block title %}Finanzberatung{% endblock %}</title>
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
<script src="/static/htmx.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<nav>
|
|
<a href="/">Übersicht</a>
|
|
<a href="/import">Import</a>
|
|
<a href="/buchungen">Buchungen</a>
|
|
<a href="/planung">Planung</a>
|
|
<a href="http://{{ request.url.hostname or '127.0.0.1' }}:8097" target="_blank" rel="noopener">Grafana</a>
|
|
<form method="post" action="/logout">
|
|
<button type="submit">Logout</button>
|
|
</form>
|
|
</nav>
|
|
<main>
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
</body>
|
|
</html>
|