{% 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 %}
{% if slideshow %} {% include "templates/includes/slideshow.html" %} {% else %} {{ product_image(website_image, "product-full-image") }} {% endif %}

{{ name }}

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


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

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

{% if show_items -%}
{{ _("Items") }}
{% for d in website_items -%} {%- endfor %}
{{ d.item_name }} {{ d.item_code }} {{ d.description }} {{ d.qty }}
{%- endif %} {% if show_operations -%}
{{ _("Operations") }}
{% for d in website_operations -%} {%- endfor %}
{{ d.operation }} {{ d.workstation }} {{ d.time_in_mins }} {{ d.website_image }}
{%- endif %} {% endblock %}