{% extends 'base.html' %} {% load inventory_extras %} {% block content %} {% if perms.inventory.view_tag %}

{{ tag_list|length }} Tag{{ tag_list|length|pluralize }}

{% if perms.inventory.add_tag %}

Create

{% endif %}
{% if perms.inventory.change_tag or perms.inventory.delete_tag %} {% endif %} {% for tag in tag_list %} {% if perms.inventory.change_tag or perms.inventory.delete_tag %} {% endif %} {% endfor %}
Taxonomy Meta Business Unit Tag
{{ tag.taxonomy|default:"-" }} {{ tag.meta_business_unit|default:"-" }} {% inventory_tag tag %} {% if perms.inventory.change_tag %} {% endif %} {% if perms.inventory.delete_tag %} {% endif %}
{% endif %} {% if perms.inventory.view_taxonomy %}

{{ taxonomy_list|length }} Taxonom{{ taxonomy_list|length|pluralize:"y,ies" }}

{% if perms.inventory.add_taxonomy %}

Create

{% endif %}
{% if perms.inventory.change_taxonomy or perms.inventory.delete_taxonomy %} {% endif %} {% for taxonomy in taxonomy_list %} {% if perms.inventory.change_taxonomy or perms.inventory.delete_taxonomy %} {% endif %} {% endfor %}
Meta Business Unit Name
{{ taxonomy.meta_business_unit|default:"-" }} {{ taxonomy.name }} {% if perms.inventory.change_taxonomy %} {% endif %} {% if perms.inventory.delete_taxonomy %} {% endif %}
{% endif %} {% endblock %}