23 lines
746 B
HTML
23 lines
746 B
HTML
{% if latest_task_list %}
|
|
<table>
|
|
{% for task in latest_task_list %}
|
|
<tr>
|
|
<td style="font-weight: ;" width="100" >
|
|
{{task.str_start_date}} - {{task.str_end_date}}<br>
|
|
{{task.str_start_time}} - {{task.str_end_time}}<br>
|
|
|
|
</td>
|
|
<td style="font-weight: bold;" width="75" >
|
|
{{task.key}}
|
|
|
|
</td>
|
|
<td style="{% if task.done %}text-decoration:line-through{% endif %}">
|
|
|
|
{{ task.name }}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% else %}
|
|
<p>Aucune information véhicule</p>
|
|
{% endif %} |