{% 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 %} {{ hashtag.stats.total }} Total {% endif %} {% if hashtag.aliases %} {% for alias in hashtag.aliases %} {{ alias }}{% if not forloop.last %}, {% endif %} {% endfor %} Aliases {% 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 %}
There are no hashtags yet.