{% extends "base.html" %} {% load static %} {% load formatstring %} {% block title %}{{ item }}{% endblock %} {% block header_bar %} {{ item.name }} {{ item.description }} {{ item.form_factor }} {% endblock %} {% block header_icons %}
  • {% endblock %} {% block content %} {% if item.manufacturer %} {% endif %} {% if item.distributor %} {% endif %} {% if item.form_factor %} {% endif %} {% if item.price %} {% endif %} {% if item.last_ordered_on %} {% endif %} {% if item.distributor_item_no %} {% endif %} {% if item.created_at != item.changed_at %} {% endif %} {% if item.documentation.exists %} {% endif %}
    Description {{ item }}
    Manufacturer {% if item.manufacturer.icon %}{% endif %}{{ item.manufacturer.name }}
    Distributor {% if item.distributor.icon %}{% endif %}{{ item.distributor.name }}
    Form factor {% if item.form_factor.datasheet %} {% if item.form_factor.icon %}{% endif %} {{ item.form_factor.name }} {% else %} {% if item.form_factor.icon %}{% endif %} {{ item.form_factor.name }} {% endif %}
    Price {{ item.price }} Euro
    Last ordered {{ item.last_ordered_on }}
    Link {% formatstring item.distributor.search_link item.distributor_item_no %}
    Created at{{ item.created_at }}
    Last change{{ item.changed_at }}
    Datasheets
    {% endblock %}