{% extends "base.html" %} {% block title %}All Tags - {{ site_title }}{% endblock %} {% block content %}

All Tags

{% if tags %}
{% for tag_info in tags %} {{ tag_info.display_name }} ({{ tag_info.count }}) {% endfor %}
{% else %}

No tags yet.

{% endif %}
{% endblock %}