Ajout road

This commit is contained in:
Ambulance Clerc
2022-06-30 12:54:41 +02:00
parent 40e44eaa19
commit 55e53afc11
4 changed files with 31 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
{% if latest_task_list %}
<table style="font-family: 'Source Sans Pro', sans-serif; font-size: 12pt;">
{% for task in latest_task_list %}
<tr>
<td style="vertical-align: top;" width="150" >
<span style="font-weight: bold;">{{task.key}}</span><br>
{{task.str_start_date}} - {{task.str_end_date}}<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 info route</p>
{% endif %}