Initial commit

This commit is contained in:
Bjoern Welker
2026-01-30 08:55:14 +01:00
commit 81a1ed7eef
17 changed files with 2824 additions and 0 deletions

37
wawi/templates/base.html Normal file
View File

@@ -0,0 +1,37 @@
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>{{ title or "Hellas Artikelverwaltung" }}</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}" />
</head>
<body>
<header>
<div class="wrap top">
<div class="brand">
<img src="{{ url_for('static', filename='logo.png') }}" alt="Hellas 1899 Logo" />
<div>
<h1>Hellas 1899 · Artikelverwaltung</h1>
<div class="meta">Bestand &amp; Ausbuchungen</div>
</div>
</div>
<nav class="nav">
{% if logged_in %}
<a class="btn icon" href="{{ url_for('bp.index') }}" title="Übersicht" aria-label="Übersicht"><span></span></a>
<a class="btn icon accent" href="{{ url_for('bp.new_item') }}" title="Neuer Artikel" aria-label="Neuer Artikel"><span></span></a>
<a class="btn icon" href="{{ url_for('bp.users') }}" title="Benutzer" aria-label="Benutzer"><span>☺︎</span></a>
<a class="btn icon" href="{{ url_for('bp.orders') }}" title="Bestellungen" aria-label="Bestellungen"><span>☑︎</span></a>
<a class="btn icon ghost" href="{{ url_for('bp.logout') }}" title="Logout" aria-label="Logout"><span></span></a>
{% endif %}
</nav>
</div>
</header>
<main>
<div class="wrap">
{% block content %}{% endblock %}
</div>
</main>
<a href="#" class="to-top" title="Nach oben" aria-label="Nach oben"></a>
</body>
</html>