--- a/quiz/models.py Tue Apr 20 15:44:43 2010 +0530
+++ b/quiz/models.py Tue Apr 20 19:20:15 2010 +0530
@@ -6,7 +6,7 @@
class Profile(models.Model):
user = models.ForeignKey(User)
- profession = models.CharField(max_length=20,help_text="(Ex: Faculty,Student etc.)")
+ profession = models.CharField(max_length=20,help_text="(Ex: Faculty, Student etc.)")
affiliated_to = models.CharField(max_length=100, verbose_name="College/Company")
class QuestionBank(models.Model):
@@ -39,3 +39,4 @@
quiz_num = models.CharField(max_length=2)
que_remaining = models.CharField(max_length=100)
que_answered = models.ManyToManyField(Answer)
+