urls: Fix name of /plans page.

This was incorrectly duplicating the name of another page.
This commit is contained in:
Tim Abbott
2017-09-15 06:02:27 -07:00
parent 1c453fdf2a
commit 5ca7d15e39

View File

@@ -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'),