Modify /hello to go to register instead of signup on Enterprise

Also move the urls.py lines to the right place

(imported from commit f9d9805fe599ceffb6cdd1ed572d8656cb0d6d95)
This commit is contained in:
acrefoot
2013-11-21 12:05:25 -05:00
parent fd4565dd67
commit 3a982c7c06
3 changed files with 17 additions and 8 deletions

View File

@@ -78,6 +78,12 @@ urlpatterns = patterns('',
url(r'^apps/$', TemplateView.as_view(template_name='zerver/apps.html')),
url(r'^robots\.txt$', RedirectView.as_view(url='/static/robots.txt')),
# Landing page, features pages, signup form, etc.
url(r'^hello/$', TemplateView.as_view(template_name='zerver/hello.html'),
name='landing-page'),
url(r'^new-user/$', RedirectView.as_view(url='/hello')),
url(r'^features/$', TemplateView.as_view(template_name='zerver/features.html')),
)
# These are used for enterprise development. On a real enterprise instance,