project/scipycon/registration/models.py
branchpayments
changeset 276 325ec5a41269
parent 268 2d47a3eb5ec4
parent 275 679a9cab4bf1
child 294 7c12c63fef3b
--- a/project/scipycon/registration/models.py	Thu Nov 18 14:18:33 2010 +0530
+++ b/project/scipycon/registration/models.py	Thu Nov 18 16:16:28 2010 +0530
@@ -28,7 +28,6 @@
 SEX_CHOICES = (
     ('Male', 'Male'),
     ('Female', 'Female'),
-    ('Other', 'Other')
     )
 
 PAYMENT_MODE_CHOICES = (
@@ -37,6 +36,7 @@
     ('Net Banking', 'Net Banking')
     )
 
+
 class Wifi(base_models.ScopedBase):
     """Defines wifi options at SciPy.in
     """
@@ -46,6 +46,17 @@
     wifi = models.CharField(max_length=50, choices=WIFI_CHOICES,
                             help_text=WIFI_HELP, verbose_name="Laptop")
 
+    registration_id = models.CharField(
+        max_length=255, verbose_name="Identification Number",
+        help_text="- Provide the serial or identification number at the "
+        "back of your laptop using which your laptop can be uniquely "
+        "identified. Ex: 8BDB8FB (Service Tag on Dell Laptops).<br /> - "
+        "This is for security reasons and will be used while you enter and "
+        "leave the venue.<br /> - Please don't provide the model number "
+        "like Dell Inspiron 1545. There may be many laptops of that model "
+        "and hence your laptop cannot be uniquely identified.",
+        blank=True, null=True)
+
 
 class Accommodation(base_models.ScopedBase):
     """Defines accommodation information for SciPy.in