From 36a2a461a2e98a9af3efc9d3c7f48744773b93bc Mon Sep 17 00:00:00 2001 From: Leif Johansson Date: Thu, 5 Aug 2010 10:21:25 +0200 Subject: url verification more trouble than its worth --- coip/apps/link/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coip/apps/link/models.py b/coip/apps/link/models.py index 25c26b4..ada194d 100644 --- a/coip/apps/link/models.py +++ b/coip/apps/link/models.py @@ -8,7 +8,7 @@ from coip.apps.name.models import Name class Link(models.Model): name = models.ForeignKey(Name,related_name='links') - url = models.URLField() + url = models.CharField(max_length=255) tag = models.CharField(max_length=255) text = models.CharField(max_length=255) timecreated = models.DateTimeField(auto_now_add=True) -- cgit v1.1