{% extends "templates/web.html" %} {% block title %} {{ title }} {% endblock %} {% block breadcrumbs %} {% include "templates/includes/breadcrumbs.html" %} {% endblock %} {% block page_content %} {% from "erpnext/templates/includes/macros.html" import product_image %} {% from "erpnext/templates/includes/macros.html" import media_image %}

{{ name }}

{{ _("Item") }}: {{ item_name }}


{{ product_image(website_image, "product-full-image") }}

{{ _("Quantity") }}: {{ quantity }}


{% if show_items -%}

{{ _("Items") }}

{% for d in items -%} {%- endfor %}
{{ _("Qty") }}
{{ media_image(d.image, "product-full-image") }}
{{ d.item_name }}
{% if d.item_name != d.item_code -%}
{{ d.item_code }}
{% else -%} {%- endif %}
{{ d.description }}
{{ d.qty }}
{%- endif %} {% if show_operations -%}

{{ _("Operations") }}

{% for d in operations -%} {%- endfor %}
{{ _("Workstation") }} {{ _("Time(in mins)") }}
{{ media_image(d.image, d.operation, "product-full-image") }}
{{ d.operation }}
{{ d.description }}
{{ d.workstation }} {{ d.time_in_mins }}
{%- endif %}

{{ _("Description") }}
{{ web_long_description or _("No description given") }}

{% endblock %}