2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-08-14 23:51:08 +00:00

Render GET as a formview rather than ajaxview

This commit is contained in:
Oliver Walters
2019-07-02 19:02:19 +10:00
parent 3c44fcaf5b
commit 802255c62d
2 changed files with 18 additions and 16 deletions

View File

@@ -8,11 +8,6 @@
<h4>Upload Bill of Materials</h4>
<hr>
<p>
Select a BOM file to upload for:<br>
<b>{{ part.name }} - <i>{{ part.description }}</i></b>
</p>
<p>The BOM file must contain the required named columns as provided in the <a href="/part/bom_template/">BOM Upload Template</a></a></p>
<form method="post" action='' class='js-modal-form' enctype="multipart/form-data">
@@ -21,8 +16,9 @@
<input type='hidden' name='form_step' value='select_file'/>
{% crispy form %]
{% crispy form %}
<button type="submit" class="save btn btn-default">Upload</button>
</form>
{% endblock %}