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.
56 lines
1.7 KiB
HTML
56 lines
1.7 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Meine Rechnungen{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="panel">
|
|
<h1>Rechnungseinsicht</h1>
|
|
<p>Alle Rechnungen im Überblick.</p>
|
|
</section>
|
|
|
|
<section class="table-wrap">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Rechnungsnummer</th>
|
|
<th>Zeitraum</th>
|
|
<th>Betrag</th>
|
|
<th>Faelligkeit</th>
|
|
<th>Status</th>
|
|
<th>PDF</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for invoice in invoices %}
|
|
<tr>
|
|
<td>{{ invoice.invoice_number }}</td>
|
|
<td>{{ invoice.period }}</td>
|
|
<td>{{ '%.2f'|format(invoice.amount_eur) }} EUR</td>
|
|
<td>{{ invoice.due_date }}</td>
|
|
<td>{{ invoice.status }}</td>
|
|
<td>
|
|
{% if invoice.pdf_path %}
|
|
<a href="{{ url_for('static', filename=invoice.pdf_path) }}" target="_blank" rel="noopener">PDF ansehen</a>
|
|
{% else %}
|
|
-
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% else %}
|
|
<tr>
|
|
<td colspan="6">Noch keine Rechnungen vorhanden.</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</section>
|
|
|
|
<style>
|
|
.panel { margin-bottom: 1rem; }
|
|
.table-wrap { background: #fff; border: 1px solid #d8e1e8; border-radius: 14px; padding: 1rem; overflow-x: auto; }
|
|
table { width: 100%; border-collapse: collapse; }
|
|
th, td { text-align: left; padding: 0.7rem; border-bottom: 1px solid #e8eef2; }
|
|
a { color: #0a4c74; font-weight: 700; }
|
|
</style>
|
|
{% endblock %}
|