summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPrimal Pappachan2012-04-11 12:39:15 +0530
committerPrimal Pappachan2012-04-11 12:39:15 +0530
commit9adec90902f59a41b418b19975cfbad2db90f354 (patch)
tree7a4d09391deb85c5a4561ac12ba98781d75c00f9
parenta9b1f51e9766e45438be2ea97a3e75e8997a5373 (diff)
downloadaloha-9adec90902f59a41b418b19975cfbad2db90f354.tar.gz
aloha-9adec90902f59a41b418b19975cfbad2db90f354.tar.bz2
aloha-9adec90902f59a41b418b19975cfbad2db90f354.zip
added field for pd status, removed cat flag
-rw-r--r--aloha/allotter/models.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/aloha/allotter/models.py b/aloha/allotter/models.py
index 3be370f..4d3ac3e 100644
--- a/aloha/allotter/models.py
+++ b/aloha/allotter/models.py
@@ -102,7 +102,9 @@ class Application(models.Model):
cent = models.IntegerField(max_length=10, verbose_name="Center Code")
cgy = models.CharField(max_length=10, verbose_name="Category")
-
+
+ pd_status = models.CharField(max_length=1, verbose_name="Physical Disability",
+ help_text="Y for Yes, N for No", blank=True, default="N")
submitted = models.BooleanField(verbose_name="Submission Status", default=False)
@@ -125,9 +127,7 @@ class Profile(models.Model):
help_text=u"Phone number read from user after authentication")
dd_no = models.CharField(max_length=15, verbose_name="Demand Draft Number", blank=True, null=True)
-
- cat_status = models.BooleanField(help_text="Whether belongs to Category SBOBC", default=False)
-
+
#Application for the Profile
application = models.ForeignKey(Application)