{% extends "admin/base_main.html" %} {% block subtitle %}{{ hashtag.hashtag }}{% endblock %} {% block settings_content %}
{% csrf_token %}
hashtag Details {% include "forms/_field.html" with field=form.hashtag %} {% include "forms/_field.html" with field=form.name_override %}
Access Control {% include "forms/_field.html" with field=form.public %}
Stats
{% for stat_month, stat_value in hashtag.usage_months.items|slice:":5" %} {% if forloop.first %} {% endif %} {% if forloop.last %}
Month Usage
{{ stat_month|date:"M Y" }} {{ stat_value }}
{% endif %} {% empty %}

Hashtag is either not used or stats have not been computed yet.

{% endfor %}
Back View Posts
{% endblock %}