{% extends 'base.html' %} {% load buttons %} {% load custom_links %} {% load helpers %} {% load plugins %} {% block header %}
{% plugin_buttons object %} {% if perms.extras.add_tag %} {% clone_button object %} {% endif %} {% if perms.extras.change_tag %} {% edit_button object %} {% endif %} {% if perms.extras.delete_tag %} {% delete_button object %} {% endif %}

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

{% include 'inc/created_updated.html' %}
{% custom_links object %}
{% endblock %} {% block content %}
Tag
Name {{ object.name }}
Slug {{ object.slug }}
Tagged Items {{ items_count }}
Color  
Description {{ object.description|placeholder }}
{% include 'inc/custom_fields_panel.html' %} {% include 'inc/relationships_panel.html' %} {% plugin_left_page object %}
{% include 'panel_table.html' with table=items_table heading='Tagged Objects' %} {% include 'inc/paginator.html' with paginator=items_table.paginator page=items_table.page %} {% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}