Merge pull request #377 from alphagov/sort-out-help-pages

Split Help page into Trial Mode and Pricing pages
This commit is contained in:
Chris Hill-Scott
2016-04-05 10:20:57 +01:00
8 changed files with 109 additions and 130 deletions

View File

@@ -23,9 +23,14 @@ def cookies():
return render_template('views/cookies.html')
@main.route('/help')
def help():
return render_template('views/help.html')
@main.route('/trial-mode')
def trial_mode():
return render_template('views/trial-mode.html')
@main.route('/pricing')
def pricing():
return render_template('views/pricing.html')
@main.route('/terms')