2025-01-25 00:47:31 +01:00
|
|
|
{% extends "base.html" %}
|
2025-01-26 00:53:17 +01:00
|
|
|
{% load static %}
|
|
|
|
{% block title %}Dashboard{% endblock %}
|
|
|
|
{% block head %}
|
|
|
|
<link rel="stylesheet" href="{% static "dashboard.css" %}">
|
2025-01-26 02:01:38 +01:00
|
|
|
<script src="{% static "dashboard.js" %}"></script>
|
2025-01-26 00:53:17 +01:00
|
|
|
{% endblock %}
|
|
|
|
{% block footer %}{% endblock %}
|
|
|
|
{% block main %}
|
2025-01-26 02:01:38 +01:00
|
|
|
<div class="monthly">
|
|
|
|
<div class="template row">
|
|
|
|
<div class="name"></div>
|
|
|
|
<div class="duration"></div>
|
|
|
|
</div>
|
|
|
|
<div class="template no-data">No Data</div>
|
|
|
|
<div class="controls">
|
|
|
|
<button id="prev"><</button>
|
|
|
|
<div id="month">Mois</div>
|
|
|
|
<button id="next">></button>
|
|
|
|
</div>
|
|
|
|
<div id="list"></div>
|
|
|
|
</div>
|
2025-01-26 00:53:17 +01:00
|
|
|
{% endblock %}
|