17 lines
708 B
HTML
17 lines
708 B
HTML
{% if latest_task_list %}
|
|
<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>
|
|
|
|
------------------------------------------------------
|
|
|
|
<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 %} |