Changement frontend caldav
This commit is contained in:
27
mycaldav/templates/manif/manif_view.html
Normal file
27
mycaldav/templates/manif/manif_view.html
Normal file
@@ -0,0 +1,27 @@
|
||||
{% load static %}
|
||||
|
||||
<link rel="stylesheet" href="{% static 'mycaldav/style.css' %}">
|
||||
<div class="ifram_main_div">
|
||||
{% if latest_task_list %}
|
||||
<table>
|
||||
{% for task in latest_task_list %}
|
||||
|
||||
<tr>
|
||||
<td style="vertical-align: top;padding-bottom: 18px" width="120" >
|
||||
<span style="font-weight: bold;">{{task.key}}</span><br>
|
||||
{{task.str_start_date}} - {{task.str_end_date}}<br>
|
||||
{{task.str_start_time}} - {{task.str_end_time}}<br>
|
||||
|
||||
</td>
|
||||
<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>
|
||||
</tr>
|
||||
<tr><td> </td></tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
{% else %}
|
||||
<p>Aucune information manifestation</p>
|
||||
{% endif %}
|
||||
</div>
|
Reference in New Issue
Block a user