{% extends "base.html" %} {% load static %} {% block title %}Tag {{ tag.name }}{% endblock %} {% block header_bar %} {{ tag.name }} {{ tag.description}} {% endblock %} {% block header_icons %} {% if user.is_staff %}
  • {% endif %} {% endblock %} {% block content %} {% if tag.workshop_set.count > 0 %}

    Workshops

    {% for workshop in tag.workshop_set.all %} {% endfor %}
    {{ workshop.name }} {% if user.is_staff %} {% endif %}
    {% endif %} {% if tag.box_set.count > 0 %}

    Boxes

    {% for box in tag.box_set.all %} {% endfor %}
    {{ box.name }} {% if user.is_staff %} {% endif %}
    {% endif %} {% if tag.distributor_set.count > 0 %}

    Distributors

    {% for distributor in tag.distributor_set.all %} {% endfor %}
    {% if distributor.icon %} {% endif %} {{ distributor.name }} {% if user.is_staff %} {% endif %}
    {% endif %} {% if tag.manufacturer_set.count > 0 %}

    Manufacturers

    {% for manufacturer in tag.manufacturer_set.all %} {% endfor %}
    {{ manufacturer.name }} {% if user.is_staff %} {% endif %}
    {% endif %} {% if items %}

    Items

    {% url 'tag-detail' tag.id as this_url %} {% include "inventory/pagination.html" with url=this_url id="items_paginator_top" param="item" paginator=items %} {% include "inventory/item_list.html" with items=items show_manufacturer=1 show_distributor=1 %} {% include "inventory/pagination.html" with url=this_url id="items_paginator_bottom" param="item" paginator=items %} {% endif %} {% if tag.formfactor_set.count > 0 %}

    Form factors

    {% endif %} {% endblock %}