flask_template_codex/app/templates/tasks/today.html
2026-08-08 03:00:29 +02:00

27 lines
737 B
HTML

{% extends "base.html" %}
{% from "tasks/_task_card.html" import task_card %}
{% block title %}Today · Steady{% endblock %}
{% block content %}
<div class="page-heading">
<div>
<p class="eyebrow">At most seven choices</p>
<h1>Today</h1>
<p>Only current and undated tasks appear here. Future tasks can wait.</p>
</div>
<a class="button" href="{{ url_for('tasks.create') }}">Quick add</a>
</div>
<div class="task-list">
{% for task in tasks %}
{{ task_card(task) }}
{% else %}
<div class="empty-state">
<h2>Your Today view is clear</h2>
<p>There is nothing you need to choose from right now.</p>
</div>
{% endfor %}
</div>
{% endblock %}