Add string representation for Store.
This commit is contained in:
parent
d7360887cd
commit
4c7c2e0dc3
1 changed files with 3 additions and 0 deletions
|
@ -118,6 +118,9 @@ class Store(Timestampable, models.Model):
|
|||
null=True,
|
||||
blank=True)
|
||||
|
||||
def __str__(self):
|
||||
return self.iri
|
||||
|
||||
|
||||
class Song(Disableable, Publishable, Timestampable, models.Model):
|
||||
'''
|
||||
|
|
Loading…
Reference in a new issue