summaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authorDusty Phillips <buchuki@gmail.com>2008-07-03 18:41:46 -0400
committerDusty Phillips <buchuki@gmail.com>2008-07-03 18:41:46 -0400
commitb8221328c8de2dd2c673d4b0fd9a89d6d164d1d4 (patch)
tree7b50c5a7659e0da09e486c8c07f9418ed36d5be2 /main
parent902802e14b94a9dd7d3422dcacb4f92cfbb028c2 (diff)
downloadarchweb-b8221328c8de2dd2c673d4b0fd9a89d6d164d1d4.tar.gz
archweb-b8221328c8de2dd2c673d4b0fd9a89d6d164d1d4.zip
make url field non validaty
Diffstat (limited to 'main')
-rw-r--r--main/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/models.py b/main/models.py
index a38e9628..12821f77 100644
--- a/main/models.py
+++ b/main/models.py
@@ -21,7 +21,7 @@ class UserProfile(models.Model):
maxlength=50,
help_text="Required field")
other_contact = models.CharField(maxlength=100, null=True, blank=True)
- website = models.URLField(null=True, blank=True)
+ website = models.CharField(maxlength=200, null=True, blank=True)
yob = models.IntegerField(null=True, blank=True)
location = models.CharField(maxlength=50, null=True, blank=True)
languages = models.CharField(maxlength=50, null=True, blank=True)