- 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.
25 lines
762 B
HTML
25 lines
762 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>{% block title %}CalMiner{% endblock %}</title>
|
|
<link rel="stylesheet" href="/static/css/main.css" />
|
|
{% block head_extra %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
<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>
|