34 lines
1.7 KiB
HTML
34 lines
1.7 KiB
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 style="{% if task.team_transfert %}background-color: orange;{% endif %}">
|
|
<td style="vertical-align: top;font-weight: bold;" width="50" >
|
|
{{task.key}}
|
|
</td>
|
|
<td style="{% if task.done %}text-decoration:line-through{% endif %}">
|
|
<span style="{% if task.team_1_chef %}background-color: yellow;{% endif %}">{{ task.team_1 }}</span>
|
|
<span style="{% if task.team_2_chef %}background-color: yellow;{% endif %}">{{ task.team_2 }}</span>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
<tr><td> </td></tr>
|
|
<tr>
|
|
<td style="border-top: 1px dashed white;font-weight: bold;padding: 5px; text-align: center;" colspan="2">Nuit</td>
|
|
</tr>
|
|
{% for task in night_task_list %}
|
|
{% if task.str_start_date == today %}
|
|
<tr style="{% if task.team_transfert %}background-color: orange;{% endif %}"><td style="font-weight: bold;vertical-align: top;" width="50" >{{task.key}}</td>
|
|
<td style="{% if task.done %}text-decoration:line-through{% endif %}">
|
|
<span style="{% if task.team_1_chef %}background-color: yellow;{% endif %}">{{ task.team_1 }}</span>
|
|
<span style="{% if task.team_2_chef %}background-color: yellow;{% endif %}">{{ task.team_2 }}</span>
|
|
</td>
|
|
</tr>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</table>
|
|
{% else %}
|
|
<p>Aucune information d'équipage</p>
|
|
{% endif %}
|
|
</div> |