first commit
This commit is contained in:
commit
e6c52820cd
227 changed files with 16156 additions and 0 deletions
23
Templates/partials/tasks_list.html
Normal file
23
Templates/partials/tasks_list.html
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{}
|
||||
{# Partial: affiche une table de tâches à partir de la variable `tasks` #}
|
||||
{% import "tasks/macros.html" as tsk %}
|
||||
<div style="border:1px solid #e5e5e5;border-radius:.5rem;padding:1rem;">
|
||||
<div style="display:flex;align-items:center;justify-content:space-between;margin-bottom:.6rem;">
|
||||
<h3 style="margin:0;font-size:1.1rem;">Tâches</h3>
|
||||
<div style="font-size:.9rem;color:#666;">
|
||||
Total: {{ tasks|length if tasks else 0 }}
|
||||
</div>
|
||||
</div>
|
||||
{{ tsk.render_tasks_table(tasks, show_entity=True, show_due_date=True) }}
|
||||
</div>
|
||||
{# Partial: affiche une table de tâches à partir de la variable `tasks` #}
|
||||
{% import "tasks/macros.html" as tsk %}
|
||||
<div style="border:1px solid #e5e5e5;border-radius:.5rem;padding:1rem;">
|
||||
<div style="display:flex;align-items:center;justify-content:space-between;margin-bottom:.6rem;">
|
||||
<h3 style="margin:0;font-size:1.1rem;">Tâches</h3>
|
||||
<div style="font-size:.9rem;color:#666;">
|
||||
Total: {{ tasks|length if tasks else 0 }}
|
||||
</div>
|
||||
</div>
|
||||
{{ tsk.render_tasks_table(tasks, show_entity=True, show_due_date=True) }}
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue