Commit 559a311a by Brian Talbot

studio - alerts: refactored static alerts demo view to have a different…

studio - alerts: refactored static alerts demo view to have a different template/view/url name to help with user facing views vs. documentation views
parent 62514d85
......@@ -110,8 +110,8 @@ def howitworks(request):
else:
return render_to_response('howitworks.html', {})
def alerts(request):
return render_to_response('alerts.html', {})
def ux_alerts(request):
return render_to_response('ux-alerts.html', {})
# ==== Views for any logged-in user ==================================
......
......@@ -82,7 +82,7 @@ urlpatterns = ('',
# User creation and updating views
urlpatterns += (
url(r'^alerts$', 'contentstore.views.alerts', name='alerts'),
url(r'^ux-alerts$', 'contentstore.views.ux_alerts', name='ux-alerts'),
url(r'^howitworks$', 'contentstore.views.howitworks', name='howitworks'),
url(r'^signup$', 'contentstore.views.signup', name='signup'),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment