This commit is contained in:
2026-02-17 14:59:55 +01:00
parent 5424d25822
commit e1da4fa041
27 changed files with 17914 additions and 3919 deletions

View File

@@ -72,18 +72,33 @@
<td class="total">{{ data.year_total|floatformat:2 }}</td>
</tr>
{% endfor %}
<tr class="total">
<td><strong>Σ (all clients, selected 6-month interval)</strong></td>
{% for month in months %}
<td>-</td>
{% endfor %}
<td class="total"><strong>{{ interval_total_output_lhe|floatformat:2 }}</strong></td>
</tr>
</tbody>
</table>
<!-- Navigation Buttons -->
<div class="navigation-buttons">
<a href="{% url 'table_one' %}" class="nav-button">Go to Helium Input</a>
<a href="{% url 'table_one' %}" class="nav-button">Go to Helium Input</a>
<a href="{% url 'table_two' %}" class="nav-button">Go to Helium Output</a>
<a href="/admin/" class="nav-button admin-button">Go to Admin Panel</a>
<a href="{% url 'betriebskosten_list' %}" class="nav-button">Betriebskosten</a>
<a href="{% url 'monthly_sheet' year=2024 month=1 %}">Monthly Sheets</a>
<a href="{% url 'halfyear_balance' %}">Halbjahres Bilanz</a>
<a href="{% url 'monthly_sheet' year=2024 month=1 %}" class="nav-button">Monthly Sheets</a>
<a href="{% url 'halfyear_balance' %}" class="nav-button">Halbjahres Bilanz</a>
<!-- ✅ NEW -->
<a href="{% url 'abrechnung' %}" class="nav-button">Abrechnung</a>
<a href="{% url 'rechnung' %}" class="nav-button">Rechnung</a>
</div>
</div>
<style>
@@ -145,10 +160,11 @@
}
.navigation-buttons {
display: flex;
justify-content: center;
gap: 20px;
margin-top: 30px;
display: flex;
justify-content: center;
gap: 12px;
margin-top: 30px;
flex-wrap: wrap; /* ✅ allow wrapping */
}
.nav-button {