mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-04 12:08:24 -04:00
Changes those fields in the following forms: - FreeSMSAllowance - ProviderForm - ProviderRatioForm - ServiceDataRetentionEditForm Includes changes to templates that use this form and associated tests.
25 lines
758 B
HTML
25 lines
758 B
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/textbox.html" import textbox %}
|
|
{% 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/radios.html" import radios %}
|
|
|
|
{% block service_page_title %}
|
|
Data retention
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
{{ page_header(
|
|
'Set data retention',
|
|
back_link=url_for('.edit_data_retention', service_id=current_service.id, data_retention_id=data_retention_id)
|
|
) }}
|
|
{% call form_wrapper() %}
|
|
{{ notification_type | capitalize}}
|
|
{{ form.days_of_retention }}
|
|
{{ page_footer('Save') }}
|
|
{% endcall %}
|
|
|
|
{% endblock %}
|