{% extends "settings/base.html" %} {% block subtitle %}Hashtags{% endblock %} {% block content %}
{% for hashtag in hashtags %} {{ 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 %}

You have no hashtags set up.

{% endfor %} Add a hashtag
{% endblock %}