{% extends "report/inventree_report_base.html" %} {% load i18n %} {% load report %} {% load barcode %} {% load inventree_extras %} {% block page_margin %} margin: 2cm; margin-top: 4cm; {% endblock page_margin %} {% block bottom_left %} content: "v{{ report_revision }} - {% format_date date %}"; {% endblock bottom_left %} {% block bottom_center %} content: "{% inventree_version shortstring=True %}"; {% endblock bottom_center %} {% block style %} .header-right { text-align: right; float: right; } .logo { height: 20mm; vertical-align: middle; } .thumb-container { width: 32px; display: inline; } .part-thumb { max-width: 32px; max-height: 32px; display: inline; } .part-text { display: inline; } .part-logo { max-width: 60px; max-height: 60px; display: inline; } table { border: 1px solid #eee; border-radius: 3px; border-collapse: collapse; width: 100%; font-size: 80%; } table td { border: 1px solid #eee; } table td.shrink { white-space: nowrap } table td.expand { width: 99% } .invisible-table { border: 0px solid transparent; border-collapse: collapse; width: 100%; font-size: 80%; } .invisible-table td { border: 0px solid transparent; } .main-part-text { display: inline; } .main-part-description { display: inline; } {% endblock style %} {% block page_content %}

{% trans "Stock location items" %}

{{ stock_location.name }}

{% for line in stock_items.all %} {% endfor %}
{% trans "Part" %} {% trans "IPN" %} {% trans "Quantity" %} {% trans "Note" %}
{{ line.part.full_name }}
{{ line.part.IPN }} {% decimal line.quantity %} {{ line.notes }}
{% endblock page_content %}