feat: Enhance equipment, maintenance, production, and simulation management interfaces

- Updated equipment.html to include scenario filtering, equipment addition form, and dynamic equipment listing.
- Enhanced maintenance.html with scenario filtering, maintenance entry form, and dynamic equipment selection.
- Improved production.html to allow scenario filtering and production output entry.
- Revamped reporting.html to display scenario KPI summaries with refresh functionality.
- Expanded simulations.html to support scenario selection, simulation run history, and detailed results display.
- Refactored base_header.html for improved navigation structure and active link highlighting.
This commit is contained in:
2025-10-21 00:09:00 +02:00
parent 5ecd2b8d19
commit 5a84445e90
14 changed files with 3299 additions and 381 deletions

View File

@@ -8,10 +8,17 @@
{% block head_extra %}{% endblock %}
</head>
<body>
{% include "partials/base_header.html" %}
<main id="content" class="container">
{% block content %}{% endblock %}
</main>
{% include "partials/base_footer.html" %} {% block scripts %}{% endblock %}
<div class="app-layout">
<aside class="app-sidebar" aria-label="Primary navigation">
{% include "partials/base_header.html" %}
</aside>
<div class="app-main">
<main id="content" class="app-content container">
{% block content %}{% endblock %}
</main>
{% include "partials/base_footer.html" %}
</div>
</div>
{% block scripts %}{% endblock %}
</body>
</html>