21 lines
855 B
HTML
21 lines
855 B
HTML
{% 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>
|
|
<td style="{% if task.done %}text-decoration:line-through{% endif %}">
|
|
<a href="{{task.href}}" target="_blank" style="text-decoration: none;color: black" >{{ task.name }}<br></a>
|
|
{{task.desc}}
|
|
</td>
|
|
</tr>
|
|
<tr><td> </td></tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% else %}
|
|
<p>Aucune information opérationnelle</p>
|
|
{% endif %} |