mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-06 10:38:25 -04:00
25 lines
680 B
HTML
25 lines
680 B
HTML
|
|
{% extends "withnav_template.html" %}
|
||
|
|
{% from "components/textbox.html" import textbox %}
|
||
|
|
{% from "components/page-footer.html" import page_footer %}
|
||
|
|
|
||
|
|
{% from "components/radios.html" import radios %}
|
||
|
|
|
||
|
|
{% block service_page_title %}
|
||
|
|
Data retention
|
||
|
|
{% endblock %}
|
||
|
|
|
||
|
|
{% block maincolumn_content %}
|
||
|
|
|
||
|
|
|
||
|
|
<h1 class="heading-large">Set data retention</h1>
|
||
|
|
<form method="post">
|
||
|
|
{{ notification_type | capitalize}}
|
||
|
|
{{ textbox(form.days_of_retention) }}
|
||
|
|
{{ page_footer(
|
||
|
|
'Save',
|
||
|
|
back_link=url_for('.edit_data_retention', service_id=current_service.id, data_retention_id=data_retention_id),
|
||
|
|
back_link_text='Back'
|
||
|
|
) }}
|
||
|
|
</form>
|
||
|
|
|
||
|
|
{% endblock %}
|