diff --git a/pinry/core/models.py b/pinry/core/models.py index 2c37753..834b7c4 100644 --- a/pinry/core/models.py +++ b/pinry/core/models.py @@ -46,4 +46,5 @@ class Pin(models.Model): tags = TaggableManager() def __unicode__(self): - return self.url + return '%s - %s' % (self.submitter, self.published) +