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

Tags

{{ tags|length }} tag{{ tags|length|pluralize }}

Create New Tag

{% csrf_token %}
{% if tags %}
{% for tag in tags %}

{{ tag.name }}

{% if tag.is_archived %} Archived {% endif %}

{{ tag.description|default:"No description" }}

{{ tag.tasks.count }} tasks
View Tasks Edit
{% endfor %}
{% else %}

No tags created yet.

Create your first tag above!

{% endif %} {% endblock %}