Add a "tutorial" page at /new-user

This is an interim strategy for user education that'll be a stopgap
until we build something in the app itself.

(imported from commit 9022d4ceffca98e127f7045f73c012857fe6fc54)
This commit is contained in:
Waseem Daher
2012-12-04 10:35:39 -05:00
parent 3d69853784
commit 3867cc3fe2
3 changed files with 52 additions and 0 deletions

View File

@@ -36,6 +36,9 @@ urlpatterns = patterns('',
url(r'^terms$', 'django.views.generic.simple.direct_to_template', {'template': 'zephyr/terms.html'}),
url(r'^privacy$', 'django.views.generic.simple.direct_to_template', {'template': 'zephyr/privacy.html'}),
# New user "tutorial"
url(r'^new-user$', 'django.views.generic.simple.direct_to_template', {'template': 'zephyr/new-user.html'}),
# These are json format views used by the web client. They require a logged in browser.
url(r'^json/update_pointer$', 'zephyr.views.json_update_pointer'),
url(r'^json/get_updates$', 'zephyr.views.json_get_updates'),