43 lines
1.4 KiB
HTML
43 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Belegimport</title>
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body>
|
|
<nav>
|
|
<div class="nav-brand">Belegimport</div>
|
|
<div class="nav-links">
|
|
<a href="/" class="{% if active_page == 'settings' %}active{% endif %}">Einstellungen</a>
|
|
<a href="/scan" class="{% if active_page == 'scan' %}active{% endif %}">Scan-Upload</a>
|
|
<a href="/log" class="{% if active_page == 'log' %}active{% endif %}">Verarbeitungslog</a>
|
|
</div>
|
|
<div class="nav-status">
|
|
{% if status and status.enabled %}
|
|
<span class="badge badge-success">Aktiv</span>
|
|
{% if status.next_run %}
|
|
<span class="text-muted">Nächster Lauf: {{ status.next_run }}</span>
|
|
{% endif %}
|
|
{% else %}
|
|
<span class="badge badge-inactive">Inaktiv</span>
|
|
{% endif %}
|
|
{% if status and status.is_processing %}
|
|
<span class="badge badge-warning">Verarbeitung läuft...</span>
|
|
{% endif %}
|
|
</div>
|
|
</nav>
|
|
|
|
<main>
|
|
{% if message %}
|
|
<div class="alert alert-{{ message_type or 'info' }}">
|
|
{{ message }}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
</body>
|
|
</html>
|