Implement DocumentProperties.__unicode__

This commit is contained in:
Will Thompson 2016-02-29 15:03:09 +00:00
parent 4613005b83
commit 8c23bdff6d

View File

@ -263,6 +263,9 @@ class DocumentProperties(models.Model):
index = models.IntegerField(default=0)
def __unicode__(self):
return u"%r-%r" % (self.document, self.entity)
def save(self, *args, **kwargs):
super(DocumentProperties, self).save(*args, **kwargs)