Chris Hill-Scott
2019-06-04 10:43:15 +01:00
parent 20c4719d07
commit 22299ea97d
4 changed files with 74 additions and 1 deletions

View File

@@ -15,6 +15,7 @@ from notifications_utils.template import HTMLEmailTemplate, LetterImageTemplate
from app import email_branding_client, letter_branding_client, status_api_client
from app.main import main
from app.main.forms import FieldWithNoneOption, SearchByNameForm
from app.main.views.feedback import QUESTION_TICKET_TYPE
from app.main.views.sub_navigation_dictionaries import features_nav
from app.utils import get_logo_cdn_domain
@@ -78,6 +79,14 @@ def pricing():
)
@main.route('/pricing/how-to-pay')
def how_to_pay():
return render_template(
'views/pricing/how-to-pay.html',
support_link=url_for('main.feedback', ticket_type=QUESTION_TICKET_TYPE)
)
@main.route('/delivery-and-failure')
def delivery_and_failure():
return redirect(url_for('.message_status'), 301)