diff --git a/netbox/templates/utilities/obj_edit.html b/netbox/templates/utilities/obj_edit.html index 16acc32ed..6bd7037fa 100644 --- a/netbox/templates/utilities/obj_edit.html +++ b/netbox/templates/utilities/obj_edit.html @@ -1,5 +1,6 @@ {% extends '_base.html' %} {% load form_helpers %} +{% load helpers %} {% block content %}
@@ -9,7 +10,12 @@ {% endfor %}
-

{% block title %}{% if obj.pk %}Editing {{ obj_type }} {{ obj }}{% else %}Add a new {{ obj_type }}{% endif %}{% endblock %}

+

+
+ +
+ {% block title %}{% if obj.pk %}Editing {{ obj_type }} {{ obj }}{% else %}Add a new {{ obj_type }}{% endif %}{% endblock %} +

{% block tabs %}{% endblock %} {% if form.non_field_errors %}
@@ -43,4 +49,5 @@
+ {% include 'inc/modal.html' with name='docs' title='Documentation' content=obj|get_docs %} {% endblock %}