Changement template caldav
This commit is contained in:
@@ -1,15 +1,17 @@
|
||||
{% if latest_task_list %}
|
||||
<ul>
|
||||
{% for task in latest_task_list %}
|
||||
<li><a "">{{ task.name }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<table>
|
||||
{% for task in latest_task_list %}
|
||||
<tr><td style="font-weight: bold;" width="75" >{{task.key}}</td> <td style="{% if task.done %}text-decoration:line-through{% endif %}">{{ task.name }}</td></tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
|
||||
------------------------------------------------------
|
||||
<ul>
|
||||
{% for task in night_task_list %}
|
||||
<li><a "">{{ task.name }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
<table>
|
||||
{% for task in night_task_list %}
|
||||
<tr><td style="font-weight: bold;" width="75" >{{task.key}}</td> <td style="{% if task.done %}text-decoration:line-through{% endif %}">{{ task.name }}</td></tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
{% else %}
|
||||
<p>No task are available.</p>
|
||||
{% endif %}
|
Reference in New Issue
Block a user