diff --git a/app/main/views/index.py b/app/main/views/index.py index 23f03fff6..edf032324 100644 --- a/app/main/views/index.py +++ b/app/main/views/index.py @@ -4,6 +4,7 @@ from app import convert_to_boolean from flask_login import (login_required, current_user) from notifications_utils.template import HTMLEmailTemplate +from notifications_utils.international_billing_rates import INTERNATIONAL_BILLING_RATES @main.route('/') @@ -31,7 +32,11 @@ def trial_mode(): @main.route('/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') diff --git a/app/templates/views/pricing.html b/app/templates/views/pricing.html index c5ed60611..3a5271d32 100644 --- a/app/templates/views/pricing.html +++ b/app/templates/views/pricing.html @@ -18,22 +18,47 @@

Text messages

- +

+ Text message rate: {{ '{:.2f}'.format(sms_rate * 100) }} pence + VAT +

+ +

+ Free allowance +

- We simply charge you the costs we pay to our delivery partners. - We don’t mark these costs up in any way. + All services have a free allowance of text messages, per financial year:

+ + +

+ Long messages +

+ +

+ Long messages count as 2 or 3 text messages depending on length: +

+ + + +

+ International numbers +

+ +

+ Messages to international mobile numbers are charged at 1, 2, or 3 + times the cost of messages to UK mobile numbers. +

+ +

No monthly charge or setup fee

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.

+

+ We simply charge you the costs we pay to our delivery partners. We + don’t mark these costs up in any way. +

+