add __unicode__
This commit is contained in:
parent
782432b741
commit
9300095ffc
2 changed files with 10 additions and 0 deletions
|
|
@ -5,11 +5,20 @@ class IDAlias(models.Model):
|
|||
old = models.CharField(max_length=255, unique=True)
|
||||
new = models.CharField(max_length=255)
|
||||
|
||||
def __unicode__(self):
|
||||
return u"%s=%s" % (self.old, self.new)
|
||||
|
||||
class LayerAlias(models.Model):
|
||||
old = models.CharField(max_length=255, unique=True)
|
||||
new = models.CharField(max_length=255)
|
||||
|
||||
def __unicode__(self):
|
||||
return u"%s=%s" % (self.old, self.new)
|
||||
|
||||
class Alias(models.Model):
|
||||
url = models.CharField(max_length=255, unique=True)
|
||||
target = models.CharField(max_length=255)
|
||||
|
||||
def __unicode__(self):
|
||||
return u"%s=%s" % (self.url, self.target)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue