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

All Tasks

{{ tasks|length }} task{{ tasks|length|pluralize }}
Clear Filters
New Task
{% if tasks %}
{% for task in tasks %} {% include 'tasks/_task_item.html' %} {% endfor %}
{% else %}

No tasks found

Try adjusting your filters or create a new task.

{% endif %} {% endblock %}