{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load render_table from django_tables2 %} {% load i18n %} {% block content %}

{% trans "VLAN Translation Policy" %}

{% trans "Name" %} {{ object.name|placeholder }}
{% trans "Description" %} {{ object.description|placeholder }}
{% trans "Rules" %} {% if object.rules.count %} {{ object.rules.count }} {% else %} 0 {% endif %}
{% plugin_left_page object %}
{% include 'inc/panels/tags.html' %} {% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/comments.html' %} {% plugin_right_page object %}

{% trans "VLAN Translation Rules" %} {% if perms.ipam.add_vlantranslationrule %} {% endif %}

{% htmx_table 'ipam:vlantranslationrule_list' policy_id=object.pk %}
{% plugin_full_width_page object %}
{% endblock %}