{% extends 'base.html' %} {% block title %}{{ task.title }} - KeepItGoing{% endblock %} {% block content %}

Edit Task

Back
{% csrf_token %}
{% csrf_token %}
{% if tags %}
{% for tag in tags %} {% endfor %}
{% endif %}
{% if tags %}
{% for tag in tags %} {% endfor %}
{% endif %}

Time Tracking

{{ task.total_time_formatted }}
{% if time_entries %}
{% for entry in time_entries %}
{{ entry.started_at|date:"M j, H:i" }} {{ entry.duration_seconds|default:"Running" }}s
{% endfor %}
{% else %}

No time entries yet

{% endif %}

Subtasks

{% if task.subtasks.count > 0 %}
{% for subtask in task.subtasks.all %} {% include 'tasks/_task_item.html' with task=subtask %} {% endfor %}
{% else %}

No subtasks

{% endif %}
{% endblock %}