Files
Reskreen/caldav/templates/vhc/vhc_view.html
Ambulance Clerc 1a2bf4d874 Ajout vhc caldav
2022-06-22 07:56:14 +02:00

18 lines
563 B
HTML

{% 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 %}