Fixes #4365: Fix exception raised on IP address bulk add view

This commit is contained in:
Jeremy Stretch 2020-03-13 09:07:03 -04:00
parent 1487b5004d
commit 459bcd88a9
2 changed files with 2 additions and 1 deletions

View File

@ -10,6 +10,7 @@
* [#4340](https://github.com/netbox-community/netbox/issues/4340) - Enforce unique constraints for device and virtual machine names in the API * [#4340](https://github.com/netbox-community/netbox/issues/4340) - Enforce unique constraints for device and virtual machine names in the API
* [#4343](https://github.com/netbox-community/netbox/issues/4343) - Fix Markdown support for tables * [#4343](https://github.com/netbox-community/netbox/issues/4343) - Fix Markdown support for tables
* [#4365](https://github.com/netbox-community/netbox/issues/4365) - Fix exception raised on IP address bulk add view
--- ---

View File

@ -51,7 +51,7 @@
</div> </div>
</div> </div>
</form> </form>
{% if settings.DOCS_ROOT %} {% if obj and settings.DOCS_ROOT %}
{% include 'inc/modal.html' with name='docs' content=obj|get_docs %} {% include 'inc/modal.html' with name='docs' content=obj|get_docs %}
{% endif %} {% endif %}
{% endblock %} {% endblock %}