{% extends 'generic/_base.html' %}
{% load helpers %}
{% load render_table from django_tables2 %}
{% block title %}Manage Field Permission Plugin{% endblock title %}
{% block subtitle %}
Verify and enable/disable validators in NetBox configuration
{% endblock subtitle %}
{% block control-buttons %}
{% if not validators_statically_configured %}
Your NetBox configuration is statically configured. This means the plugin can not manage the validators automatically or at user request. You can still manually add/remove the validators to your configuration using the prepared configuration here. The validator is required to check the fields a user/group has access to.
If you want to switch to a dynamic configuration please consult the NetBox documentation on config revisions.
CUSTOM_VALIDATORS = {{ install_validators|json }}
{% endspaceless %}
CUSTOM_VALIDATORS = {{ uninstall_validators|json }}
{% endspaceless %}