This commit is contained in:
2025-10-08 10:13:07 +02:00
parent 70e055d20b
commit b74cf45c5c
10 changed files with 813 additions and 91 deletions

View File

@@ -2,6 +2,9 @@
{% block content %}
<div class="container">
<!-- Title -->
<h1 class="page-title">Helium Output Yearly Summary</h1>
<!-- Year Filter -->
<div class="year-filter">
<label for="year-select">Year:</label>
@@ -40,12 +43,10 @@
<!-- Navigation Buttons -->
<div class="navigation-buttons">
<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="{% 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>
</div>
</div>
@@ -56,6 +57,12 @@
padding: 20px;
}
.page-title {
text-align: center;
color: #333;
margin-bottom: 20px;
}
.year-filter {
margin: 20px 0;
text-align: right;
@@ -120,5 +127,13 @@
.nav-button:hover {
background-color: #0056b3;
}
.admin-button {
background-color: #6c757d;
}
.admin-button:hover {
background-color: #5a6268;
}
</style>
{% endblock %}