Changement template reskreen

This commit is contained in:
Ambulance Clerc
2023-06-17 12:43:30 +02:00
parent 0112dd1ace
commit c0178ead8c
4 changed files with 8 additions and 8 deletions

View File

@@ -7,14 +7,14 @@
{% for task in latest_task_list %}
{% if task.str_start_date == today %}
<tr>
<tr href="{{task.href}}" target="_blank" >
<td style="vertical-align: top;" class="td_key" >
<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: white" >{{ task.name }}<br></a>
<a style="text-decoration: none;color: white" >{{ task.name }}<br></a>
{{task.desc}}
</td>
</tr>