{% 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

    {% for item in items %} {% endfor %}
    Name Description Container Manufacturer
    {{ item.name }} {% if item.documentation.all %} {% endif %} {% if user.is_staff %} {% endif %} {{ item.description }} {{ item.container.display_name }} {% if item.manufacturer %} {% if item.manufacturer.icon %}{% endif %}{{ item.manufacturer.name }} {% else %} - {% endif %}
    {% endblock %}