From 20c4719d07df99c011ef5c35cd54a00f13652835 Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Tue, 4 Jun 2019 10:44:23 +0100 Subject: [PATCH] Move pricing template into own folder So we can keep thing organised when adding more pricing-related content. --- app/main/views/index.py | 2 +- app/templates/views/{pricing.html => pricing/index.html} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename app/templates/views/{pricing.html => pricing/index.html} (100%) diff --git a/app/main/views/index.py b/app/main/views/index.py index aa5d2bc3c..0ccdc2041 100644 --- a/app/main/views/index.py +++ b/app/main/views/index.py @@ -68,7 +68,7 @@ def privacy(): @main.route('/pricing') def pricing(): return render_template( - 'views/pricing.html', + 'views/pricing/index.html', sms_rate=0.0158, international_sms_rates=sorted([ (cc, country['names'], country['billable_units']) diff --git a/app/templates/views/pricing.html b/app/templates/views/pricing/index.html similarity index 100% rename from app/templates/views/pricing.html rename to app/templates/views/pricing/index.html