Files
notifications-admin/app/templates/views/service-settings/set-letters.html
T

34 lines
932 B
HTML
Raw Normal View History

2017-05-02 11:03:10 +01:00
{% extends "withnav_template.html" %}
{% from "components/radios.html" import radios %}
2017-05-02 11:03:10 +01:00
{% from "components/page-footer.html" import page_footer %}
2018-09-19 12:39:36 +01:00
{% from "components/form.html" import form_wrapper %}
2017-05-02 11:03:10 +01:00
{% block service_page_title %}
Send letters
2017-05-02 11:03:10 +01:00
{% 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 76p to send a letter using Notify.
</p>
<p>
See <a href="{{ url_for(".pricing", _anchor="letters") }}">pricing</a> for the list
of rates.
</p>
2018-09-19 12:39:36 +01:00
{% call form_wrapper() %}
2018-01-24 14:19:37 +00:00
{{ radios(form.enabled) }}
{{ page_footer(
'Save',
back_link=url_for('.service_settings', service_id=current_service.id),
back_link_text='Back to settings'
) }}
2018-09-19 12:39:36 +01:00
{% endcall %}
2017-05-02 11:03:10 +01:00
</div>
</div>
{% endblock %}