{% extends "base.html" %} {% set title = "Tags" %} {% block style %} {% endblock %} {% block content %}
{% for tag in tags %}
{{ tag.name }}
{{ tag.subscription_tags.count() }}
{% endfor %}
{% endblock %}