mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-08 08:28:15 -04:00
Re-order page ready for new stuff
This commit is contained in:
@@ -4,6 +4,7 @@ from app import convert_to_boolean
|
|||||||
from flask_login import (login_required, current_user)
|
from flask_login import (login_required, current_user)
|
||||||
|
|
||||||
from notifications_utils.template import HTMLEmailTemplate
|
from notifications_utils.template import HTMLEmailTemplate
|
||||||
|
from notifications_utils.international_billing_rates import INTERNATIONAL_BILLING_RATES
|
||||||
|
|
||||||
|
|
||||||
@main.route('/')
|
@main.route('/')
|
||||||
@@ -31,7 +32,11 @@ def trial_mode():
|
|||||||
|
|
||||||
@main.route('/pricing')
|
@main.route('/pricing')
|
||||||
def pricing():
|
def pricing():
|
||||||
return render_template('views/pricing.html', sms_rate=0.0158)
|
return render_template(
|
||||||
|
'views/pricing.html',
|
||||||
|
sms_rate=0.0158,
|
||||||
|
international_sms_rates=INTERNATIONAL_BILLING_RATES,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
@main.route('/delivery-and-failure')
|
@main.route('/delivery-and-failure')
|
||||||
|
|||||||
@@ -18,22 +18,47 @@
|
|||||||
|
|
||||||
<h2 class="heading-medium">Text messages</h2>
|
<h2 class="heading-medium">Text messages</h2>
|
||||||
|
|
||||||
<ul class="list list-bullet">
|
<p>
|
||||||
<li>Free allowance: 250,000 text messages per service, per financial year</li>
|
Text message rate: {{ '{:.2f}'.format(sms_rate * 100) }} pence + VAT
|
||||||
<li>If your messages are long, they will count as 2 or 3 text messages, depending on length:
|
</p>
|
||||||
<ul class="list list-bullet">
|
|
||||||
<li>Up to 160 characters = 1 text message</li>
|
<h3 class="heading-small">
|
||||||
<li>Up to 306 characters = 2 text messages</li>
|
Free allowance
|
||||||
<li>Up to 459 characters = 3 text messages</li>
|
</h3>
|
||||||
</ul></li>
|
|
||||||
<li>Standard text message rate: {{ '{:.2f}'.format(sms_rate * 100) }} pence + VAT</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
We simply charge you the costs we pay to our delivery partners.
|
All services have a free allowance of text messages, per financial year:
|
||||||
We don’t mark these costs up in any way.
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
<ul class="list list-bullet">
|
||||||
|
<li>250,000 text messages for central government services</li>
|
||||||
|
<li>25,000 text messages for local government services</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h3 class="heading-small">
|
||||||
|
Long messages
|
||||||
|
</h3>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Long messages count as 2 or 3 text messages depending on length:
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<ul class="list list-bullet">
|
||||||
|
<li>Up to 160 characters = 1 text message</li>
|
||||||
|
<li>Up to 306 characters = 2 text messages</li>
|
||||||
|
<li>Up to 459 characters = 3 text messages</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h3 class="heading-small">
|
||||||
|
International numbers
|
||||||
|
</h3>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Messages to international mobile numbers are charged at 1, 2, or 3
|
||||||
|
times the cost of messages to UK mobile numbers.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
<h2 class="heading-medium">No monthly charge or setup fee</h2>
|
<h2 class="heading-medium">No monthly charge or setup fee</h2>
|
||||||
<p>
|
<p>
|
||||||
There are no other charges for using Notify. There’s no monthly charge
|
There are no other charges for using Notify. There’s no monthly charge
|
||||||
@@ -45,6 +70,11 @@
|
|||||||
of Notify. We’re also covering the cost of the free emails and text messages.
|
of Notify. We’re also covering the cost of the free emails and text messages.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
We simply charge you the costs we pay to our delivery partners. We
|
||||||
|
don’t mark these costs up in any way.
|
||||||
|
</p>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user