From b8221328c8de2dd2c673d4b0fd9a89d6d164d1d4 Mon Sep 17 00:00:00 2001 From: Dusty Phillips Date: Thu, 3 Jul 2008 18:41:46 -0400 Subject: make url field non validaty --- main/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main') diff --git a/main/models.py b/main/models.py index a38e962..12821f7 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) -- cgit v1.2.3-24-g4f1b