wcsinst: change domain not to be a slug, it needs to hold complete hostnames

This commit is contained in:
Frédéric Péters 2013-06-12 22:48:42 +02:00
parent 3cba1c06da
commit dff306533c
1 changed files with 1 additions and 1 deletions

View File

@ -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)