diff options
author | Dusty Phillips <buchuki@gmail.com> | 2008-07-03 18:41:46 -0400 |
---|---|---|
committer | Dusty Phillips <buchuki@gmail.com> | 2008-07-03 18:41:46 -0400 |
commit | b8221328c8de2dd2c673d4b0fd9a89d6d164d1d4 (patch) | |
tree | 7b50c5a7659e0da09e486c8c07f9418ed36d5be2 | |
parent | 902802e14b94a9dd7d3422dcacb4f92cfbb028c2 (diff) |
make url field non validaty
-rw-r--r-- | main/models.py | 2 |
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) |