{% extends 'base.html' %} {% block title %}{{ page_title|default:"All Tasks" }} - KeepItGoing{% endblock %} {% block content %}

{{ page_title|default:"All Tasks" }}

{{ tasks|length }} task{{ tasks|length|pluralize }}
{% csrf_token %} {% if current_tag_id %} {% endif %}
{% if running_timer %}
Timer running for: {{ running_timer.task.title }} 00:00:00
{% endif %} {% if tasks %}
{% for task in tasks %} {% include 'tasks/_task_item.html' %} {% endfor %}
{% else %}

No tasks yet.

Add one above!

{% endif %} {% endblock %} {% block extra_js %} {% endblock %}