added basic register view in views.py
authornishanth
Sat, 29 May 2010 09:44:26 +0530
changeset 7 98f2b5c2abc9
parent 6 3b3c5f11af8e
child 8 e85ae25f920a
added basic register view in views.py
sdi/views.py
--- a/sdi/views.py	Sat May 29 09:41:26 2010 +0530
+++ b/sdi/views.py	Sat May 29 09:44:26 2010 +0530
@@ -1,1 +1,9 @@
-# Create your views here.
+from django.shortcuts import render_to_response
+
+from sage_days.sdi.models import Registrant
+
+def register(request):
+    """ The user register page.
+    """
+
+    pass