37 lines
1.9 KiB
HTML
37 lines
1.9 KiB
HTML
{% load static %}
|
|
|
|
<link rel="stylesheet" href="{% static 'mycaldav/style.css' %}">
|
|
<div class="ifram_main_div">
|
|
{% if latest_task_list %}
|
|
<table>
|
|
{% for task in latest_task_list %}
|
|
|
|
<tr style="">
|
|
<td style="vertical-align: top;font-weight: bold;{% if task.team_transfert %}background-color: orange;{% endif %}" width="100" >
|
|
{{task.key}} {% if task.team_transfert %}{% endif %}
|
|
</td>
|
|
<td style="{% if task.done %}text-decoration:line-through{% endif %}">
|
|
<span style="{% if task.team_1_chef %}color: yellow !important;{% endif %}; width: 150px;display: inline-block">{{ task.team_1 }}</span>
|
|
<span style="{% if task.team_2_chef %}color: yellow !important;{% endif %};width: 150px;display: inline-block">{{ 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=""><td style="font-weight: bold;vertical-align: top;{% if task.team_transfert %}background-color: orange;{% endif %}" width="100" >{{task.key}}</td>
|
|
<td style="{% if task.done %}text-decoration:line-through{% endif %}">
|
|
<span style="{% if task.team_1_chef %}color: yellow !important;{% endif %};width: 150px;display: inline-block">{{ task.team_1 }}</span>
|
|
<span style="{% if task.team_2_chef %}color: yellow !important;{% endif %};width: 150px;display: inline-block">{{ task.team_2 }}</span>
|
|
</td>
|
|
</tr>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</table>
|
|
{% else %}
|
|
<p>Aucune information d'équipage</p>
|
|
{% endif %}
|
|
</div> |