mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-30 19:29:43 -04:00
- Convert previous/next navigation to USWDS pagination component - Update radio buttons and checkboxes to use USWDS classes - Migrate guest list inputs with proper USWDS styling - Replace GOV.UK button patterns with USWDS button variants - Update form field spacing to use USWDS utilities - Scope fieldset legend styles to specific form contexts - Update visual regression test references for new components
28 lines
846 B
HTML
28 lines
846 B
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/page-header.html" import page_header %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
{% from "components/form.html" import form_wrapper %}
|
|
{% from "components/components/back-link/macro.njk" import usaBackLink %}
|
|
{% from "components/radios.html" import radios %}
|
|
|
|
{% block service_page_title %}
|
|
Set data retention
|
|
{% endblock %}
|
|
|
|
{% block backLink %}
|
|
{{ usaBackLink({ "href": url_for('.add_data_retention', service_id=current_service.id) }) }}
|
|
{% endblock %}
|
|
{% block maincolumn_content %}
|
|
|
|
{{ page_header('Set data retention') }}
|
|
|
|
{% call form_wrapper() %}
|
|
<div class="notification-type-radios">
|
|
{{ radios(form.notification_type) }}
|
|
</div>
|
|
{{ form.days_of_retention }}
|
|
{{ page_footer('Add') }}
|
|
{% endcall %}
|
|
|
|
{% endblock %}
|