mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-05 06:48:25 -04:00
Our support ticket analysis shows that the most common action request after going live is turning on letters. We just do this for any team that requests it – there’s no gatekeeping. So we should just allow people to make the change themselves. This will be a better experience for our users, and less work for us. The design of the page replicates roughly what we have for international text messaging.
31 lines
814 B
HTML
31 lines
814 B
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/radios.html" import radios %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
|
|
{% block service_page_title %}
|
|
Send letters
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<div class="grid-row">
|
|
<div class="column-five-sixths">
|
|
<h1 class="heading-large">Send letters</h1>
|
|
<p>
|
|
It costs between 30p and 45p to send a letter using Notify.
|
|
</p>
|
|
<p>
|
|
See <a href="{{ url_for(".pricing", _anchor="letters") }}">pricing</a> for the list
|
|
of rates.
|
|
</p>
|
|
{{ radios(form.enabled) }}
|
|
{{ page_footer(
|
|
'Save',
|
|
back_link=url_for('.service_settings', service_id=current_service.id),
|
|
back_link_text='Back to settings'
|
|
) }}
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|