Change frontend

This commit is contained in:
Ambulance Clerc
2022-10-13 18:17:50 +02:00
parent 96f6049df1
commit 78de63c8c4

View File

@@ -7,12 +7,12 @@
{% 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="50" >
<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 %}">{{ task.team_1 }}</span>&nbsp;
<span style="{% if task.team_2_chef %}color: yellow !important;{% endif %}">{{ task.team_2 }}</span>
<span style="{% if task.team_1_chef %}color: yellow !important;{% endif %}; width: 150px;display: inline-block">{{ task.team_1 }}</span>&nbsp;
<span style="{% if task.team_2_chef %}color: yellow !important;{% endif %};width: 150px;display: inline-block">{{ task.team_2 }}</span>
</td>
</tr>
{% endfor %}
@@ -22,10 +22,10 @@
</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="50" >{{task.key}}</td>
<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 %}">{{ task.team_1 }}</span>&nbsp;
<span style="{% if task.team_2_chef %}color: yellow !important;{% endif %}">{{ task.team_2 }}</span>
<span style="{% if task.team_1_chef %}color: yellow !important;{% endif %};width: 150px;display: inline-block">{{ task.team_1 }}</span>&nbsp;
<span style="{% if task.team_2_chef %}color: yellow !important;{% endif %};width: 150px;display: inline-block">{{ task.team_2 }}</span>
</td>
</tr>
{% endif %}