{% extends "base.html" %} {% block title %}{{ task.title }} · Steady{% endblock %} {% block content %}
{{ task.priority|capitalize }} {{ task.status|replace('_', ' ')|title }}
{% if task.due_date %} {% endif %}

{{ task.title }}

{% if task.description %}

{{ task.description }}

{% endif %}
{{ task.progress_percentage }}% {{ task.progress_percentage }}%

Small steps

{% if task.subtasks %} {% else %}

No small steps yet. Add the easiest first move.

{% endif %}
{{ subtask_form.hidden_tag() }}
{{ subtask_form.title.label }} {{ subtask_form.title(placeholder="For example: open the document") }}
{{ subtask_form.submit(class="button button--quiet") }}
{% if task.status != 'done' %} Focus on this task
{{ action_form.hidden_tag() }}
{% endif %} Edit task Back to tasks
Delete this task

This permanently removes the task and its small steps.

{{ action_form.hidden_tag() }}
{% endblock %}