mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-07 06:48:26 -04:00
We’ve decided that this feature should be self-service, and on by default for all users. Before we can make it on by default we should give users a way to switch it off for themselves. Which is what this PR does.
34 lines
1.0 KiB
HTML
34 lines
1.0 KiB
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/radios.html" import radios %}
|
|
{% from "components/page-header.html" import page_header %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
{% from "components/form.html" import form_wrapper %}
|
|
|
|
{% block service_page_title %}
|
|
Send international letters
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<div class="govuk-grid-row">
|
|
<div class="govuk-grid-column-five-sixths">
|
|
{{ page_header(
|
|
'Send international letters',
|
|
back_link=url_for('main.service_settings', service_id=current_service.id)
|
|
) }}
|
|
<p class="govuk-body">
|
|
It costs more to send a letter to an international address.
|
|
</p>
|
|
<p class="govuk-body">
|
|
See <a class="govuk-link govuk-link--no-visited-state" href="{{ url_for(".pricing") }}">pricing</a> for the list
|
|
of rates.
|
|
</p>
|
|
{% call form_wrapper() %}
|
|
{{ radios(form.enabled) }}
|
|
{{ page_footer('Save') }}
|
|
{% endcall %}
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|