Re-order page ready for new stuff

This commit is contained in:
Chris Hill-Scott
2017-07-28 14:28:25 +01:00
parent 3cbb7d1bcd
commit 6d9434d968
2 changed files with 48 additions and 13 deletions

View File

@@ -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')