- Added monitoring metrics for project creation success and error handling in `ProjectRepository`. - Implemented similar monitoring for scenario creation in `ScenarioRepository`. - Refactored `run_monte_carlo` function in `simulation.py` to include timing and success/error metrics. - Introduced new CSS styles for headers, alerts, and navigation buttons in `main.css` and `projects.css`. - Created a new JavaScript file for navigation logic to handle chevron buttons. - Updated HTML templates to include new navigation buttons and improved styling for buttons. - Added tests for reporting service and routes to ensure proper functionality and access control. - Removed unused imports and optimized existing test files for better clarity and performance.
32 lines
1.1 KiB
HTML
32 lines
1.1 KiB
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" />
|
|
<link rel="stylesheet" href="/static/css/imports.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 %}
|
|
<script src="/static/js/projects.js" defer></script>
|
|
<script src="/static/js/exports.js" defer></script>
|
|
<script src="/static/js/imports.js" defer></script>
|
|
<script src="/static/js/notifications.js" defer></script>
|
|
<script src="/static/js/navigation.js" defer></script>
|
|
<script src="/static/js/theme.js"></script>
|
|
</body>
|
|
</html>
|