From dff306533c490382d2d815944813caebdf72fb2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Wed, 12 Jun 2013 22:48:42 +0200 Subject: [PATCH] wcsinst: change domain not to be a slug, it needs to hold complete hostnames --- wcsinst/wcsinst/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wcsinst/wcsinst/models.py b/wcsinst/wcsinst/models.py index e5f3cf5..6ae9269 100644 --- a/wcsinst/wcsinst/models.py +++ b/wcsinst/wcsinst/models.py @@ -9,7 +9,7 @@ logger = logging.getLogger(__name__) class WcsInstance(models.Model): title = models.CharField(max_length=50) - domain = models.SlugField() + domain = models.CharField() def __unicode__(self): return '%s (%s)' % (self.title, self.domain)