{% extends "accounts/_notab.html" %} {% block title %}{% if is_owner %}Tags you are following{% else %}Tags followed by {{ user.username }}{% endif %}{% endblock %} {% block tab_home_active %}{% if is_owner %}active_tab{% endif %}{% endblock %} {% block tab_people_active %}{% if not is_owner %}active_tab{% endif %}{% endblock %} {% block section_content %}

{% if is_owner %}Tags that you are following{% else %}Tags followed by {{ user.username }}{% endif %}

{% if following %}

{% if is_owner %}You are{% else %}{{ user.username }} is {% endif %} following {{ following|length }} tag{{ following|pluralize }} (or tag group{{ following|pluralize }})

    {% for space_tags, slash_tags, split_tags in following_tags %}
      {% for tag in split_tags %}
    • {{ tag }}
    • {% endfor %}
    {% endfor %}
{% else %}

 

{% if is_owner %}You are{% else %}{{ user.username }} is {% endif %} not following any tags yet.

{% endif %}

{% endblock %}