Ajout vhc caldav

This commit is contained in:
Ambulance Clerc
2022-06-22 07:56:14 +02:00
parent 6a5bc4a280
commit 1a2bf4d874
4 changed files with 50 additions and 10 deletions

View File

@@ -0,0 +1,18 @@
{% if latest_task_list %}
<table>
{% for task in latest_task_list %}
<tr>
<td style="font-weight: bold;" width="75" >
{{task.key}}
</td>&nbsp;&nbsp;&nbsp;&nbsp;
<td style="{% if task.done %}text-decoration:line-through{% endif %}">
{{task.str_start_time}} - {{task.str_end_time}}<br>
{{ task.name }}
</td>
</tr>
{% endfor %}
</table>
{% else %}
<p>No task are available.</p>
{% endif %}