Ajout système caldav

This commit is contained in:
Ambulance Clerc
2022-06-19 23:47:09 +02:00
parent 501468b6dd
commit 1d173ffe7c
11 changed files with 143 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
{% if latest_task_list %}
<ul>
{% for task in latest_task_list %}
<li><a "">{{ task.name }} {{task.dtstart}}-{{task.dtend}}</a></li>
{% endfor %}
</ul>
------------------------------------------------------
<ul>
{% for task in night_task_list %}
<li><a "">{{ task.name }} {{task.dtstart}}-{{task.dtend}}</a></li>
{% endfor %}
</ul>
{% else %}
<p>No task are available.</p>
{% endif %}