From 5ca7d15e3943c535eb67c1ac02b4083c8ef2d77d Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Fri, 15 Sep 2017 06:02:27 -0700 Subject: [PATCH] urls: Fix name of /plans page. This was incorrectly duplicating the name of another page. --- zproject/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zproject/urls.py b/zproject/urls.py index 4950fd1a4c..40da447c4a 100644 --- a/zproject/urls.py +++ b/zproject/urls.py @@ -149,7 +149,7 @@ i18n_urls = [ url(r'^integrations/(.*)', IntegrationView.as_view()), url(r'^about/$', zerver.views.users.about_view), url(r'^apps/(.*)', zerver.views.home.apps_view, name='zerver.views.home.apps_view'), - url(r'^plans/$', TemplateView.as_view(template_name='zerver/plans.html'), name='landing-page'), + url(r'^plans/$', TemplateView.as_view(template_name='zerver/plans.html'), name='plans'), # Landing page, features pages, signup form, etc. url(r'^hello/$', TemplateView.as_view(template_name='zerver/hello.html'), name='landing-page'),