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:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user