From 4ec7ba9251efe6aa526e3a338424883483688272 Mon Sep 17 00:00:00 2001 From: Matt Miller Date: Mon, 11 Sep 2023 09:58:03 -0400 Subject: [PATCH] updating form to include tags --- nautobot_golden_config/forms.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nautobot_golden_config/forms.py b/nautobot_golden_config/forms.py index ca80d8b9..67e15ce4 100644 --- a/nautobot_golden_config/forms.py +++ b/nautobot_golden_config/forms.py @@ -124,6 +124,7 @@ class Meta: "match_config", "custom_compliance", "config_remediation", + "tags", ) @@ -183,7 +184,7 @@ class Meta: """Boilerplate form Meta data for compliance feature.""" model = models.ComplianceFeature - fields = ("name", "slug", "description") + fields = ("name", "slug", "description", "tags") class ComplianceFeatureFilterForm(NautobotFilterForm): @@ -235,6 +236,7 @@ class Meta: "name", "description", "regex", + "tags", ) @@ -290,6 +292,7 @@ class Meta: "description", "regex", "replace", + "tags", )