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

    Items

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