67 lines
2.1 KiB
HTML
67 lines
2.1 KiB
HTML
{% extends "part/part_base.html" %}
|
|
{% load inventree_extras %}
|
|
{% load i18n %}
|
|
{% load static %}
|
|
|
|
{% block sidebar %}
|
|
{% url "part-detail" part.id as url %}
|
|
{% trans "Return to BOM" as text %}
|
|
{% include "sidebar_link.html" with url=url text=text icon="fa-undo" %}
|
|
{% endblock %}
|
|
|
|
{% block heading %}
|
|
{% trans "Upload Bill of Materials" %}
|
|
{% endblock %}
|
|
|
|
{% block actions %}
|
|
{% endblock %}
|
|
|
|
{% block page_info %}
|
|
<div class='panel-content'>
|
|
<p>{% blocktrans with step=wizard.steps.step1 count=wizard.steps.count %}Step {{step}} of {{count}}{% endblocktrans %}
|
|
{% if description %}- {{ description }}{% endif %}</p>
|
|
|
|
<form action="" method="post" class='js-modal-form' enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block form_buttons_top %}
|
|
{% endblock form_buttons_top %}
|
|
|
|
{% block form_alert %}
|
|
<div class='alert alert-info alert-block'>
|
|
<strong>{% trans "Requirements for BOM upload" %}:</strong>
|
|
<ul>
|
|
<li>{% trans "The BOM file must contain the required named columns as provided in the " %} <strong><a href='#' id='bom-template-download'>{% trans "BOM Upload Template" %}</a></strong></li>
|
|
<li>{% trans "Each part must already exist in the database" %}</li>
|
|
</ul>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
<table class='table table-striped' style='margin-top: 12px; margin-bottom: 0px'>
|
|
{{ wizard.management_form }}
|
|
{% block form_content %}
|
|
{% crispy wizard.form %}
|
|
{% endblock form_content %}
|
|
</table>
|
|
|
|
{% block form_buttons_bottom %}
|
|
{% if wizard.steps.prev %}
|
|
<button name="wizard_goto_step" type="submit" value="{{ wizard.steps.prev }}" class="save btn btn-outline-secondary">{% trans "Previous Step" %}</button>
|
|
{% endif %}
|
|
<button type="submit" class="save btn btn-outline-secondary">{% trans "Upload File" %}</button>
|
|
</form>
|
|
{% endblock form_buttons_bottom %}
|
|
</div>
|
|
{% endblock page_info %}
|
|
|
|
{% block js_ready %}
|
|
{{ block.super }}
|
|
|
|
enableSidebar('bom-upload');
|
|
|
|
$('#bom-template-download').click(function() {
|
|
downloadBomTemplate();
|
|
});
|
|
|
|
{% endblock js_ready %} |