diff -r 6233cf13fc12 -r 456b7b9e3d13 quiz/models.py --- a/quiz/models.py Wed Apr 21 00:51:20 2010 +0530 +++ b/quiz/models.py Wed Apr 21 11:08:44 2010 +0530 @@ -4,6 +4,8 @@ from offline.event.models import Event class Profile(models.Model): + """ A profile for quiz takers. + """ user = models.ForeignKey(User) profession = models.CharField(max_length=20,help_text="(Ex: Faculty, Student etc.)")