Fixed getting template name from template id

This commit is contained in:
M.Ravi 2017-06-06 03:43:50 +05:30
commit f4a81e9096
8 changed files with 361 additions and 118 deletions

View file

@ -8,5 +8,6 @@ urlpatterns = [
url(r'^/beta-program/?$', BetaProgramView.as_view(), name='beta'),
url(r'^/landing/?$', LandingProgramView.as_view(), name='landing'),
url(r'^/order/?$', PricingView.as_view(), name='pricing'),
url(r'^/order-success/?$', SuccessView.as_view(), name='success'),
url(r'^/beta_access?$', BetaAccessView.as_view(), name='beta_access'),
]