summaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authoreliott <eliott@cactuswax.net>2008-04-17 23:32:16 -0700
committereliott <eliott@cactuswax.net>2008-04-17 23:32:16 -0700
commit42c88bd1b945e9eae6ec584d9f17b92dbde2eb8f (patch)
tree6c80f14322ee92f19660f236831767c595078443 /main
parent703132bf78b88339454a5357c91e5d011fbacaa8 (diff)
downloadarchweb-42c88bd1b945e9eae6ec584d9f17b92dbde2eb8f.tar.gz
archweb-42c88bd1b945e9eae6ec584d9f17b92dbde2eb8f.zip
Formatting adjustment
Diffstat (limited to 'main')
-rw-r--r--main/models.py15
1 files changed, 12 insertions, 3 deletions
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)