mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-09 08:48:48 +00:00
18 lines
346 B
HTML
18 lines
346 B
HTML
{% extends "modal_form.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block pre_form_content %}
|
|
|
|
<p>
|
|
{% trans "Select parent part to copy BOM from" %}
|
|
</p>
|
|
|
|
{% if part.has_bom %}
|
|
<div class='alert alert-block alert-danger'>
|
|
<b>{% trans "Warning" %}</b><br>
|
|
{% trans "This part already has a Bill of Materials" %}<br>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|