From 42c88bd1b945e9eae6ec584d9f17b92dbde2eb8f Mon Sep 17 00:00:00 2001 From: eliott Date: Thu, 17 Apr 2008 23:32:16 -0700 Subject: Formatting adjustment --- main/models.py | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) (limited to 'main') diff --git a/main/models.py b/main/models.py index fb548e96..ef8f6cd1 100644 --- a/main/models.py +++ b/main/models.py @@ -8,9 +8,18 @@ import re ########################### class UserProfile(models.Model): id = models.AutoField(primary_key=True) # not technically needed - notify = models.BooleanField("Send notifications", default=True, help_text="When enabled, user will recieve 'flag out of date' notifications") - alias = models.CharField(core=True, maxlength=50, help_text="Required field") - public_email = models.CharField(core=True, maxlength=50, help_text="Required field") + notify = models.BooleanField( + "Send notifications", + default=True, + help_text="When enabled, send user 'flag out of date' notifications") + alias = models.CharField( + core=True, + maxlength=50, + help_text="Required field") + public_email = models.CharField( + core=True, + maxlength=50, + help_text="Required field") other_contact = models.CharField(maxlength=100, null=True, blank=True) website = models.URLField(null=True, blank=True) yob = models.IntegerField(null=True, blank=True) -- cgit v1.2.3-55-g3dc8