sdi/forms.py
changeset 8 e85ae25f920a
child 19 3932d9426c44
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sdi/forms.py	Sat May 29 09:48:43 2010 +0530
@@ -0,0 +1,10 @@
+from django import forms
+
+from sage_days.sdi.models import Registrant
+
+class RegisterForm(forms.ModelForm):
+    """ The form that is displayed to user.
+    """
+
+    class Meta:
+        model = Registrant