first commit

This commit is contained in:
mrtoine 2025-09-20 13:18:04 +02:00
commit e6c52820cd
227 changed files with 16156 additions and 0 deletions

10
Templates/tasks/list.html Normal file
View file

@ -0,0 +1,10 @@
{% import "tasks/macros.html" as tsk %}
<div style="max-width:1100px;margin:0 auto;padding:1rem;">
<h2 style="margin-top:0;">Liste des tâches</h2>
{{ tsk.render_tasks_table(tasks, show_entity=True, show_due_date=True) }}
</div>
{% import "tasks/macros.html" as tsk %}
<div style="max-width:1100px;margin:0 auto;padding:1rem;">
<h2 style="margin-top:0;">Liste des tâches</h2>
{{ tsk.render_tasks_table(tasks, show_entity=True, show_due_date=True) }}
</div>