{% extends 'base.html' %} {% load buttons %} {% load static %} {% load helpers %} {% block title %}{{ object }}{% endblock %} {% block header %}
{% if perms.nautobot_data_validation.add_regularexpressionvalidationrule %} {% clone_button object %} {% endif %} {% if perms.nautobot_data_validation.change_regularexpressionvalidationrule %} {% edit_button object %} {% endif %} {% if perms.nautobot_data_validation.delete_regularexpressionvalidationrule %} {% delete_button object %} {% endif %}

{{ object }}

{% include 'inc/created_updated.html' %} {% endblock %} {% block content %}
Regular Expression Rule
Name {{ object.name }}
Enabled {% if object.enabled %} {% else %} {% endif %}
Content type {{ object.content_type.app_label }}.{{ object.content_type.model }}
Field {{ object.field }}
Regular expression {{ object.regular_expression }}
Error message {{ object.error_message|placeholder }}
{% endblock %}