Changement visuel sur caldav_vhc et caldav_task

This commit is contained in:
Ambulance Clerc
2022-07-29 18:12:08 +02:00
parent 8833c2d2a7
commit 1b8b0b16d1
2 changed files with 3 additions and 3 deletions

View File

@@ -2,14 +2,14 @@
<table style="font-family: 'Source Sans Pro', sans-serif; font-size: 12pt;">
<td style="font-weight: bold;padding-bottom: 5px; text-align: center;" colspan="2">Jour</td>
{% for task in latest_task_list %}
<tr><td style="font-weight: bold;vertical-align: top;" width="75" >{{task.key}}</td>&nbsp;&nbsp;&nbsp;&nbsp;<td style="{% if task.done %}text-decoration:line-through{% endif %}">{{ task.name }}<br>{{task.desc}}{{task.dtstart}}</td></tr>
<tr><td style="font-weight: bold;vertical-align: top;" width="75" >{{task.key}}</td>&nbsp;&nbsp;&nbsp;&nbsp;<td style="{% if task.done %}text-decoration:line-through;{% endif %}vertical-align: top;">{{ task.name }}<br>{{task.desc}}{{task.dtstart}}</td></tr>
{% endfor %}
<tr><td>&nbsp;</td></tr>
<tr>
<td style="border-top: 1px dashed black;font-weight: bold;padding: 5px; text-align: center;" colspan="2">Nuit</td>
</tr>
{% for task in night_task_list %}
<tr><td style="font-weight: bold;" width="75" >{{task.key}}</td>&nbsp;&nbsp;&nbsp;&nbsp;<td style="{% if task.done %}text-decoration:line-through{% endif %}">{{ task.name }}<br>{{task.desc}}</td></tr>
<tr><td style="font-weight: bold;vertical-align: top;" width="75" >{{task.key}}</td>&nbsp;&nbsp;&nbsp;&nbsp;<td style="{% if task.done %}text-decoration:line-through;{% endif %}vertical-align: top;">{{ task.name }}<br>{{task.desc}}</td></tr>
{% endfor %}
</table>

View File

@@ -9,7 +9,7 @@
{{task.str_start_time}} - {{task.str_end_time}}<br>
</td>
<td style="{% if task.done %}text-decoration:line-through{% endif %}">
<td style="{% if task.done %}text-decoration:line-through;{% endif %}vertical-align: top;">
<span style="font-weight: bold;">{{task.name}}</span><br>
{{task.desc}}
</td>