bulkchange: fix missing closing div for form errors

If there are errors we need to close the div or it'll expand to
encompass all of the remaining fields in the form.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
This commit is contained in:
Paul Eggleton 2018-08-06 10:36:16 +02:00
parent f0fa06d2c0
commit 7b4166c368

View File

@ -44,6 +44,9 @@
</span>
</div>
</div>
{% if field.errors %}
</div>
{% endif %}
{% endfor %}
{% endfor %}
<input type="submit" class="btn" name="save" value="Save"></input>