Ajout vhc caldav
This commit is contained in:
18
caldav/templates/vhc/vhc_view.html
Normal file
18
caldav/templates/vhc/vhc_view.html
Normal file
@@ -0,0 +1,18 @@
|
||||
{% 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.str_start_time}} - {{task.str_end_time}}<br>
|
||||
{{ task.name }}
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
{% else %}
|
||||
<p>No task are available.</p>
|
||||
{% endif %}
|
Reference in New Issue
Block a user