{% extends "settings/base.html" %} {% block subtitle %}Hashtags{% endblock %} {% block content %}
{% for hashtag in page_obj %} {{ hashtag.display_name }} {% if hashtag.public %}Public{% elif hashtag.public is None %}Unreviewed{% else %}Private{% endif %} {% if hashtag.stats %} Total: {{ hashtag.stats.total }} {% endif %} {% if hashtag.aliases %} Aliases: {% for alias in hashtag.aliases %} {{ alias }}{% if not forloop.last %}, {% endif %} {% endfor %} {% endif %} {% empty %}

There are no hashtags yet.

{% endfor %}
{% if page_obj.has_previous %} Previous Page {% endif %} {% if page_obj.has_next %} Next Page {% endif %}
{% endblock %}