{% extends 'generic/_base.html' %} {% load i18n %} {% block title %} {% blocktrans trimmed with type=object|meta:"verbose_name" name=object vrf=object.vrf|default:"" %} Configure DNS views for {{ type }} {{ name }} {{ vrf }} {% endblocktrans %} {% endblock title %} {% block content %}
{% csrf_token %}
{% if inherited_from %}
{% for view in inherited_views %} {% endfor %}
{% trans "Views inherited from prefix" %} {{ inherited_from }} {% if inherited_from.vrf %}[{{ inherited_from.vrf }}] {% endif %}
{{ view|linkify }}{{ view.description }}
{% endif %} {% block form %} {% include 'htmx/form.html' %} {% endblock form %}
{% block buttons %} {% trans "Cancel" %} {% endblock buttons %}
{% endblock content %} {% block modals %} {% include 'inc/htmx_modal.html' with size='lg' %} {% endblock %}