Files
Reskreen/caldav/templates/vhc/vhc_view.html
2022-06-22 09:55:39 +02:00

22 lines
817 B
HTML

{% if latest_task_list %}
<table style="font-family: 'Source Sans Pro', sans-serif;">
{% for task in latest_task_list %}
<tr>
<td style="padding-bottom: 15px" width="100" >
<span style="font-weight: bold;">{{task.key}}</span><br>
{{task.str_start_date}} - {{task.str_end_date}}<br>
{{task.str_start_time}} - {{task.str_end_time}}<br>
</td>&nbsp;&nbsp;&nbsp;&nbsp;
<td style="{% if task.done %}text-decoration:line-through{% endif %}">
{{ task.name }}<br>
{{task.desc}}
</td>
</tr>
<tr><td>&nbsp;</td></tr>
{% endfor %}
</table>
{% else %}
<p>Aucune informations véhicule</p>
{% endif %}