{% extends "modal.html" %} {% load servo_tags %} {% load i18n %} {% block header %} {% trans "Product Info" %} {% endblock header %} {% block body %}

{{ product.code }}

{{ product.title }}

{{ product.description|default:"" }}

{% trans "Stock Price" %}
{{ product.price_sales_stock|currency }}
{% trans "Exchange Price" %}
{{ product.price_sales_exchange|currency }}
{% if product.component_code %}
{% trans "Component Group" %}
{{ product.get_component_code_display }} ({{ product.get_part_type_display }})
{% endif %}
{% trans "EEE Code" %}
{{ product.eee_code|default:"-"|addspace }}
{% for i in inventory %} {% ifchanged i.location.id %}

{{ i.location.title }}

{% endifchanged %}
{% trans "Stocked" %}
{{ i.amount_stocked|default:"-" }}
{% trans "Ordered" %}
{{ i.amount_ordered|default:"-" }}
{% trans "Reserved" %}
{{ i.amount_reserved|default:"-" }}
{% empty %}
{% trans "Product not in inventory" %}
{% endfor %} {% endblock body %} {% block footer %} {% if product.pk %} {% trans "View" %} {% trans "Edit" %} {% endif %} {% endblock footer %}