{% extends "admin/base_main.html" %} {% block subtitle %}Hashtags{% endblock %} {% block settings_content %} {% for hashtag in page_obj %} {% empty %} {% endfor %}
{{ hashtag.display_name }} {% if hashtag.public %}Public{% elif hashtag.public is None %}Unreviewed{% else %}Private{% endif %} {% if hashtag.stats %} {{ hashtag.stats.total }} post{{ hashtag.stats.total|pluralize }} {% endif %} {% if hashtag.aliases %} {% for alias in hashtag.aliases %} {{ alias }}{% if not forloop.last %}, {% endif %} {% endfor %} Aliases {% endif %} {% if hashtag.public is not True %} {% endif %} {% if hashtag.public is not False %} {% endif %}
{% if query %} No hashtags match your query. {% else %} There are no hashtags yet. {% endif %}
{% include "admin/_pagination.html" with nouns="hashtag,hashtags" %} {% endblock %}