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:
commit
c4f9fac5da
|
@ -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