{% extends 'generic/object_edit.html' %} {% load form_helpers %} {% load i18n %} {% load custom_object_utils %} {% block title %} {% if object.pk %} {% trans "Editing" %} {{ object.custom_object_type.display_name.lower }} {{ object }} {% else %} {% blocktrans trimmed with custom_object_type=object.custom_object_type.display_name %} Add a new {{ custom_object_type }} {% endblocktrans %} {% endif %} {% endblock title %} {% block form %} {% if branch_warning %} {% include 'netbox_custom_objects/inc/branch_warning.html' %} {% endif %} {# Render hidden fields #} {% for field in form.hidden_fields %} {{ field }} {% endfor %} {% include 'netbox_custom_objects/inc/edit_fields.html' %} {% endblock form %} {% block buttons %} {% trans "Cancel" %} {% if object.pk %} {% else %}
{% endif %} {% endblock buttons %}