2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-05-02 13:28:49 +00:00

Fix template to display list of missing BOM columns

This commit is contained in:
Oliver Walters 2019-07-03 20:14:13 +10:00
parent 29a27ce598
commit 064431e94f

View File

@ -9,7 +9,7 @@
<p>Step 2 - Select Fields</p> <p>Step 2 - Select Fields</p>
<hr> <hr>
{% if missing and missing|length > 0 %} {% if missing_columns and missing_columns|length > 0 %}
<div class='alert alert-danger alert-block' role='alert'> <div class='alert alert-danger alert-block' role='alert'>
Missing selections for the following required columns: Missing selections for the following required columns:
<br> <br>
@ -87,6 +87,4 @@
</form> </form>
<b>BOM Rows: {{ bom.row_count }}</b>
{% endblock %} {% endblock %}