mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-17 04:23:07 +00:00
15 lines
397 B
HTML
15 lines
397 B
HTML
{% extends "delete_obj.html" %}
|
|
|
|
{% block del_title %}
|
|
Are you sure you want to delete this BOM item?
|
|
{% endblock %}
|
|
|
|
{% block del_body %}
|
|
Deleting this entry will remove the BOM row from the following part:
|
|
|
|
<ul class='list-group'>
|
|
<li class='list-group-item'>
|
|
<b>{{ item.part.name }}</b> - <i>{{ item.part.description }}</i>
|
|
</li>
|
|
</ul>
|
|
{% endblock %} |