We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71a0b22 commit 6a39965Copy full SHA for 6a39965
1 file changed
ietf/iesg/models.py
@@ -8,6 +8,10 @@ class TelechatMinutes(models.Model):
8
exported = models.IntegerField(null=True, blank=True)
9
def get_absolute_url(self):
10
return "/iesg/telechat/%d/" % self.id
11
+ def __str__(self):
12
+ return "IESG Telechat Minutes for %s" % self.telechat_date
13
class Meta:
14
db_table = 'telechat_minutes'
15
+ class Admin:
16
+ pass
17
0 commit comments