bb501b345e
- Created 'dienstleistungen.html' to showcase services offered, including inventory system, license management, support, consulting, security concepts, and training. - Created 'kontakt.html' for contact information, including email and phone details, along with a booking section for appointments. - Created 'projekte.html' to highlight current and past projects and clients, providing insights into collaborations with educational institutions. - Created 'team.html' to introduce the team structure, roles, and selected references in the educational sector.
76 lines
4.2 KiB
HTML
76 lines
4.2 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Admin | Rechnungsverwaltung{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="panel">
|
|
<h1>Rechnungsverwaltung</h1>
|
|
<p>Rechnungen für Nutzer erstellen, aktualisieren und löschen.</p>
|
|
</section>
|
|
|
|
<section class="layout">
|
|
<form method="post" class="form-card" enctype="multipart/form-data">
|
|
<h3>Neue Rechnung</h3>
|
|
<input type="hidden" name="action" value="create">
|
|
<select name="username" required>
|
|
<option value="">Benutzer auswählen</option>
|
|
{% for user in users %}
|
|
<option value="{{ user.username }}">{{ user.username }} ({{ user.display_name }})</option>
|
|
{% endfor %}
|
|
</select>
|
|
<input type="text" name="invoice_number" placeholder="Rechnungsnummer (optional, eigener Wert möglich)">
|
|
<input type="text" name="period" placeholder="Zeitraum (MM/YYYY)" required>
|
|
<input type="text" name="amount_eur" placeholder="Betrag in EUR" required>
|
|
<input type="text" name="due_date" placeholder="Fälligkeit (YYYY-MM-DD)">
|
|
<input type="text" name="status" placeholder="Status (Offen, Bezahlt)">
|
|
<input type="file" name="invoice_pdf" accept="application/pdf">
|
|
<button type="submit">Rechnung anlegen</button>
|
|
</form>
|
|
|
|
<div class="list">
|
|
{% for item in invoices %}
|
|
<article class="entry">
|
|
<h3>{{ item.invoice_number }}</h3>
|
|
<p><strong>Nutzer:</strong> {{ item.username }} | <strong>Zeitraum:</strong> {{ item.period }}</p>
|
|
<p><strong>Betrag:</strong> {{ '%.2f'|format(item.amount_eur) }} EUR | <strong>Status:</strong> {{ item.status }} | <strong>Fälligkeit:</strong> {{ item.due_date }}</p>
|
|
{% if item.pdf_path %}
|
|
<p><strong>PDF:</strong> <a href="{{ url_for('static', filename=item.pdf_path) }}" target="_blank" rel="noopener">Ansehen</a></p>
|
|
{% endif %}
|
|
<form method="post" class="inline-form" enctype="multipart/form-data">
|
|
<input type="hidden" name="action" value="update">
|
|
<input type="hidden" name="invoice_id" value="{{ item.id }}">
|
|
<input type="text" name="invoice_number" value="{{ item.invoice_number }}" placeholder="Rechnungsnummer">
|
|
<input type="text" name="period" value="{{ item.period }}" placeholder="Zeitraum">
|
|
<input type="text" name="amount_eur" value="{{ item.amount_eur }}" placeholder="Betrag">
|
|
<input type="text" name="due_date" value="{{ item.due_date }}" placeholder="Fälligkeit">
|
|
<input type="text" name="status" value="{{ item.status }}" placeholder="Status">
|
|
<input type="file" name="invoice_pdf" accept="application/pdf">
|
|
<button type="submit">Aktualisieren</button>
|
|
</form>
|
|
<form method="post">
|
|
<input type="hidden" name="action" value="delete">
|
|
<input type="hidden" name="invoice_id" value="{{ item.id }}">
|
|
<button type="submit" class="danger">Löschen</button>
|
|
</form>
|
|
</article>
|
|
{% else %}
|
|
<article class="entry"><p>Noch keine Rechnungen vorhanden.</p></article>
|
|
{% endfor %}
|
|
</div>
|
|
</section>
|
|
|
|
<style>
|
|
.panel { margin-bottom: 1rem; }
|
|
.layout { display: grid; grid-template-columns: 320px 1fr; gap: 1rem; }
|
|
.form-card, .entry { background: #fff; border: 1px solid #d8e1e8; border-radius: 14px; padding: 1rem; }
|
|
.form-card { display: grid; gap: 0.6rem; align-self: start; }
|
|
.list { display: grid; gap: 0.8rem; }
|
|
.inline-form { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 0.45rem; margin-top: 0.6rem; }
|
|
input, select { width: 100%; border: 1px solid #c9d8e3; border-radius: 10px; padding: 0.52rem; font: inherit; background: #fff; }
|
|
a { color: #0a4c74; font-weight: 700; }
|
|
button { border: 1px solid #0a4c74; background: linear-gradient(120deg, #0c5a86 0%, #08486c 100%); color: #fff; padding: 0.45rem 0.8rem; border-radius: 999px; font-weight: 700; }
|
|
button.danger { border-color: #d04a49; background: #fff; color: #922e2e; margin-top: 0.55rem; }
|
|
@media (max-width: 980px) { .layout { grid-template-columns: 1fr; } .inline-form { grid-template-columns: 1fr; } }
|
|
</style>
|
|
{% endblock %}
|