{% extends 'generic/_base.html' %} {% block title %}Acknowledge Lint for {{ change_plan }}{% endblock %} {% block content %}
{% csrf_token %} {% for field in form.hidden_fields %} {{ field }} {% endfor %}

Acknowledge ROA Lint Findings

Acknowledge current blocking lint findings for {{ change_plan }} without approving the change plan.

{% for field in form.visible_fields %} {% if field.name == 'acknowledged_findings' and field.field.queryset.exists %}
New Acknowledgements Required
{% elif field.name == 'previously_acknowledged_findings' and field.field.queryset.exists %}
Re-Confirm Previously Acknowledged Findings
{% endif %}
{{ field }} {% if field.help_text %}
{{ field.help_text }}
{% endif %} {% for error in field.errors %}
{{ error }}
{% endfor %}
{% endfor %}
{% endblock %}