Provide a __unicode__ member for ImportantDate. Commit ready for merge.
- Legacy-Id: 15124
This commit is contained in:
parent
c75b5e9386
commit
4f99fef377
|
@ -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 )
|
||||
|
|
Loading…
Reference in a new issue