2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-18 13:05:42 +00:00

Form for shipping a SalesOrder

- Returns "False" for now
This commit is contained in:
Oliver Walters
2020-04-24 10:20:56 +10:00
parent b45fec221c
commit 77471cb89c
13 changed files with 155 additions and 14 deletions

View File

@ -13,7 +13,11 @@
{% if form.non_field_errors %}
<div class='alert alert-danger alert-block' role='alert'>
<b>Error Submitting Form:</b>
{{ form.non_field_errors }}
<ul>
{% for error in form.non_field_errors %}
{{ error }}
{% endfor %}
</ul>
</div>
{% endif %}
{% endblock %}