{% extends '_base.html' %} {% load helpers %} {% block header %}
{% if perms.taggit.change_tag %} Edit this tag {% endif %} {% if perms.taggit.delete_tag %} Delete this tag {% endif %}

{% block title %}Tag: {{ tag }}{% endblock %}

{% include 'inc/created_updated.html' with obj=tag %} {% endblock %} {% block content %}
Tag
Name {{ tag.name }}
Slug {{ tag.slug }}
Tagged Items {{ items_count }}
Color  
Comments
{% if tag.comments %} {{ tag.comments|gfm }} {% else %} None {% endif %}
{% include 'panel_table.html' with table=items_table heading='Tagged Objects' %} {% include 'inc/paginator.html' with paginator=items_table.paginator page=items_table.page %}
{% endblock %}