25 lines
935 B
HTML
25 lines
935 B
HTML
<div style="color: white">
|
|
{% if latest_task_list %}
|
|
<table style="font-family: 'Source Sans Pro', sans-serif; font-size: 12pt;color: white">
|
|
{% for task in latest_task_list %}
|
|
|
|
<tr>
|
|
<td style="vertical-align: top;padding-bottom: 18px" width="120" >
|
|
<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>
|
|
<td style="{% if task.done %}text-decoration:line-through;{% endif %}vertical-align: top;">
|
|
<span style="font-weight: bold;">{{task.name}}</span><br>
|
|
{{task.desc}}
|
|
</td>
|
|
</tr>
|
|
<tr><td> </td></tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% else %}
|
|
<p>Aucune information véhicule</p>
|
|
{% endif %}
|
|
</div>
|