Skip to content

Commit 6a39965

Browse files
committed
Add admin page for telechat minutes, one of the few tables we
identified that it is straightforward to use django-admin for. - Legacy-Id: 907
1 parent 71a0b22 commit 6a39965

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

ietf/iesg/models.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ class TelechatMinutes(models.Model):
88
exported = models.IntegerField(null=True, blank=True)
99
def get_absolute_url(self):
1010
return "/iesg/telechat/%d/" % self.id
11+
def __str__(self):
12+
return "IESG Telechat Minutes for %s" % self.telechat_date
1113
class Meta:
1214
db_table = 'telechat_minutes'
15+
class Admin:
16+
pass
1317

0 commit comments

Comments
 (0)