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-27 18:50:24 +01:00
|
|
|
<div class="by-range">
|
2025-01-26 02:01:38 +01:00
|
|
|
<div class="template row">
|
|
|
|
<div class="name"></div>
|
|
|
|
<div class="duration"></div>
|
|
|
|
</div>
|
|
|
|
<div class="template no-data">No Data</div>
|
|
|
|
<div class="controls">
|
2025-01-27 18:50:24 +01:00
|
|
|
<div id="month-sel" class="group">
|
|
|
|
<button id="prev-month"><</button>
|
|
|
|
<div id="month">Month</div>
|
|
|
|
<button id="next-month">></button>
|
|
|
|
</div>
|
|
|
|
<div id="week-sel" class="group hidden">
|
|
|
|
<button id="prev-week"><</button>
|
|
|
|
<div id="week">Week</div>
|
|
|
|
<button id="next-week">></button>
|
|
|
|
</div>
|
|
|
|
<select id="range-sel">
|
|
|
|
<option value="monthly">Monthly</option>
|
|
|
|
<option value="weekly">Weekly</option>
|
|
|
|
</select>
|
2025-01-26 02:01:38 +01:00
|
|
|
</div>
|
|
|
|
<div id="list"></div>
|
|
|
|
</div>
|
2025-01-26 00:53:17 +01:00
|
|
|
{% endblock %}
|