131 lines
4.7 KiB
HTML
Executable File
131 lines
4.7 KiB
HTML
Executable File
{% load static %}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta name="description" content="Extremum - Dashboard">
|
|
<meta name="author" content="Extremum">
|
|
|
|
<title>Extremum - Dashboard</title>
|
|
|
|
<!-- Google Fonts - Nunito (Soft and minimalist) -->
|
|
<link href="https://fonts.googleapis.com/css?family=Nunito:200,300,400,600,700,800,900" rel="stylesheet">
|
|
<!-- FontAwesome for icons -->
|
|
<link href="{% static 'vendor/fontawesome-free/css/all.min.css' %}" rel="stylesheet">
|
|
<!-- Custom CSS -->
|
|
<link href="{% static 'css/sb-admin-2.min.css' %}" rel="stylesheet">
|
|
<link href="{% static 'css/sb-admin-2.css' %}" rel="stylesheet">
|
|
<link rel="shortcut icon" href="#"/>
|
|
</head>
|
|
|
|
<body id="page-top">
|
|
|
|
<!-- Page Wrapper -->
|
|
<div id="wrapper">
|
|
<!-- Sidebar -->
|
|
<ul class="navbar-nav bg-primary sidebar sidebar-dark accordion position-fixed" id="accordionSidebar">
|
|
<!-- Sidebar Brand -->
|
|
<a class="sidebar-brand d-flex align-items-center justify-content-center" href="{% url 'home' %}">
|
|
<div class="sidebar-brand-text mx-3">Extremum Dashboard</div>
|
|
</a>
|
|
|
|
<!-- Sidebar Divider -->
|
|
<hr class="sidebar-divider my-0">
|
|
|
|
<!-- Navigation Items -->
|
|
<li class="nav-item">
|
|
<a class="nav-link scroll-to-section" href="{% url 'home' %}#home_intro" id="home_nav">
|
|
<i class="fas fa-home"></i>
|
|
<span>Home</span>
|
|
</a>
|
|
</li>
|
|
|
|
<li class="nav-item">
|
|
<a class="nav-link scroll-to-section" href="{% url 'home' %}#dataset_selection" id="dataset_selection_nav">
|
|
<i class="fas fa-database"></i>
|
|
<span>Dataset Selection</span>
|
|
</a>
|
|
</li>
|
|
|
|
<li class="nav-item">
|
|
<a class="nav-link scroll-to-section" href="{% url 'charts' %}" id="charts_nav">
|
|
<i class="fas fa-chart-bar"></i>
|
|
<span>Pre-trained Models & Visualization</span>
|
|
</a>
|
|
</li>
|
|
|
|
<li class="nav-item">
|
|
<a class="nav-link disabled" href="{% url 'train' %}" id="train_nav">
|
|
<i class="fas fa-robot"></i>
|
|
<span>Train a Model</span>
|
|
</a>
|
|
</li>
|
|
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="{% url 'counterfactuals' %}" id="counterfactuals_nav">
|
|
<i class="fas fa-lightbulb"></i>
|
|
<span>Counterfactuals & Explainability</span>
|
|
</a>
|
|
</li>
|
|
|
|
<!-- Sidebar Divider -->
|
|
<hr class="sidebar-divider d-none d-md-block">
|
|
|
|
<!-- Sidebar Toggler -->
|
|
<div class="text-center d-none d-md-inline">
|
|
<button class="rounded-circle border-0" id="sidebarToggle"></button>
|
|
</div>
|
|
</ul>
|
|
<!-- End of Sidebar -->
|
|
|
|
<!-- Content Wrapper -->
|
|
<div id="content-wrapper" class="d-flex flex-column">
|
|
<!-- Main Content -->
|
|
<div id="content">
|
|
<div class="container-fluid" style="padding-top: 50px;">
|
|
{% block content %}
|
|
<!-- Page-specific content will go here -->
|
|
{% endblock content %}
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Footer -->
|
|
<footer class="sticky-footer bg-white">
|
|
<div class="container">
|
|
<div class="copyright text-center">
|
|
<span>Copyright © Extremum Dashboard 2024</span>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
<!-- End of Footer -->
|
|
|
|
</div>
|
|
<!-- End of Content Wrapper -->
|
|
|
|
<!-- Scroll to Top Button -->
|
|
<a class="scroll-to-top rounded" href="#page-top">
|
|
<i class="fas fa-angle-up"></i>
|
|
</a>
|
|
</div>
|
|
|
|
<!-- End of Page Wrapper -->
|
|
|
|
<!-- Core JavaScript Files -->
|
|
<script src="{% static 'vendor/jquery/jquery.min.js' %}"></script>
|
|
<script src="{% static 'vendor/bootstrap/js/bootstrap.bundle.min.js' %}"></script>
|
|
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
|
|
|
|
<!-- jQuery Easing Plugin -->
|
|
<script src="{% static 'vendor/jquery-easing/jquery.easing.min.js' %}"></script>
|
|
|
|
<!-- Custom Scripts -->
|
|
<script src="{% static 'js/sb-admin-2.min.js' %}"></script>
|
|
<script src="{% static 'js/main.js' %}"></script>
|
|
|
|
</body>
|
|
</html>
|