11 lines
No EOL
637 B
HTML
11 lines
No EOL
637 B
HTML
{# Partial: bloc des tâches du jour, attend `today_tasks` dans le contexte #}
|
|
{% import "tasks/macros.html" as tsk %}
|
|
<div style="border:1px solid #e5e5e5;border-radius:.5rem;padding:1rem;background:#fafafa;">
|
|
<div style="display:flex;align-items:center;justify-content:space-between;margin-bottom:.6rem;">
|
|
<h3 style="margin:0;font-size:1.1rem;">Tâches du jour</h3>
|
|
<div style="font-size:.9rem;color:#666;">
|
|
{{ today_tasks|length if today_tasks else 0 }} tâche(s)
|
|
</div>
|
|
</div>
|
|
{{ tsk.render_tasks_table(today_tasks, show_entity=True, show_due_date=False, empty_text="Aucune tâche pour aujourd'hui") }}
|
|
</div> |