erpnext/templates/generators/bom.html
{% 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 %}
{{ _("Item") }}: {{ item_name }}
{{ media_image(website_image, item_name, "product-full-image") }}
{{ _("Quantity") }}: {{ quantity }}
{% if show_items -%}
{% for d in items -%}
{{ media_image(d.image, d.item_name, "product-full-image") }}
{{ d.item_name }}
{% if d.item_name != d.item_code -%}
{{ d.item_code }}
{%- endif %}
{{ d.description }}
{{ _("Qty") }}: {{ d.qty }}
{%- endfor %}
{%- endif %} {% if show_operations -%}
{% for d in operations -%}
{{ media_image(d.image, d.operation, "product-full-image") }}
{{ d.operation }}
{{ d.description }}
{{ _("Workstation") }}
{{ d.workstation }}
{{ _("Time(in mins)") }}
{{ d.time_in_mins }}
{%- endfor %}
{%- endif %}
{{ _("Description") }}
{{ web_long_description or _("No description given") }}
{% endblock %}