Skip to content

Commit 4f99fef

Browse files
committed
Provide a __unicode__ member for ImportantDate. Commit ready for merge.
- Legacy-Id: 15124
1 parent c75b5e9 commit 4f99fef

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

ietf/meeting/models.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1138,3 +1138,6 @@ class ImportantDate(models.Model):
11381138
name = ForeignKey(ImportantDateName)
11391139
class Meta:
11401140
ordering = ["-meeting_id","date", ]
1141+
1142+
def __unicode__(self):
1143+
return u'%s : %s : %s' % ( self.meeting, self.name, self.date )

0 commit comments

Comments
 (0)