2017-04-27 14:26:25 +01:00
|
|
|
{% extends "withnav_template.html" %}
|
2017-09-26 14:05:02 +01:00
|
|
|
{% from "components/radios.html" import radios %}
|
2017-04-27 14:26:25 +01:00
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
|
|
|
|
|
|
|
|
{% block service_page_title %}
|
2017-06-07 14:00:55 +01:00
|
|
|
International text messages
|
2017-04-27 14:26:25 +01:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
|
|
|
|
|
|
<div class="grid-row">
|
|
|
|
|
<div class="column-five-sixths">
|
|
|
|
|
<h1 class="heading-large">International text messages</h1>
|
2017-09-26 14:05:02 +01:00
|
|
|
<p>
|
|
|
|
|
Messages to international mobile numbers are charged at 1, 2, or
|
|
|
|
|
3 times the cost of messages to UK mobile numbers.</p>
|
|
|
|
|
<p>
|
|
|
|
|
See <a href="{{ url_for(".pricing") }}">pricing</a> for the list
|
|
|
|
|
of rates.
|
|
|
|
|
</p>
|
|
|
|
|
<form method="post">
|
|
|
|
|
{{ radios(form.enabled) }}
|
|
|
|
|
{{ page_footer(
|
|
|
|
|
button_text="Save",
|
|
|
|
|
back_link=url_for('.service_settings', service_id=current_service.id),
|
|
|
|
|
back_link_text='Back to settings'
|
|
|
|
|
) }}
|
|
|
|
|
</form>
|
2017-04-27 14:26:25 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|