Merged in [15124] from rjsparks@nostrum.com:

Provide a __unicode__ member for ImportantDate.
 - Legacy-Id: 15133
Note: SVN reference [15124] has been migrated to Git commit 4f99fef377
This commit is contained in:
Henrik Levkowetz 2018-05-07 10:57:06 +00:00
commit c4f9fac5da

View file

@ -1138,3 +1138,6 @@ class ImportantDate(models.Model):
name = ForeignKey(ImportantDateName)
class Meta:
ordering = ["-meeting_id","date", ]
def __unicode__(self):
return u'%s : %s : %s' % ( self.meeting, self.name, self.date )