{% extends "base.html" %} {% load static %} {% load formatstring %} {% block title %}Distributor: {{ distributor }}{% endblock %} {% block header_bar %} Distributor: {{ distributor.name }} {{ distributor.description }} {% endblock %} {% block header_icons %} {% if user.is_staff %}
  • {% endif %} {% endblock %} {% block content %} {% if distributor.icon %} {% endif %} {% if distributor.search_link %} {% endif %} {% if distributor.phone %} {% endif %} {% if distributor.email %} {% endif %} {% if distributor.created_at != distributor.changed_at %} {% endif %}
    Name {{ distributor.name }}
    Description {{ distributor.description }}
    Icon
    Link {% if distributor.web_link %}{{ distributor.web_link }}{% else %}-{% endif %}
    Search
    Phone {{ distributor.phone }}
    Email {{ distributor.email }}
    Tags
      {% for tag in distributor.tags.all %}
    • {{ tag.name }}
    • {% empty %} No tags {% endfor %}
    Created at{{ distributor.created_at }}
    Last change{{ distributor.changed_at }}

    Items

    {% url 'distributor-detail' distributor.id as this_url %} {% include "inventory/pagination.html" with url=this_url id="paginator_top" param="item" paginator=items %} {% include "inventory/item_list.html" with items=items show_manufacturer=1 %} {% include "inventory/pagination.html" with url=this_url id="paginator_top" param="item" paginator=items %} {% endblock %}