There was an error while loading. Please reload this page.
1 parent c97f637 commit aa1e421Copy full SHA for aa1e421
1 file changed
ietf/liaisons/models.py
@@ -84,11 +84,11 @@ def name(self):
84
if self.from_groups.count():
85
frm = ', '.join([i.acronym or i.name for i in self.from_groups.all()])
86
else:
87
- frm = self.from_name
+ frm = self.from_contact.person.name
88
if self.to_groups.count():
89
to = ', '.join([i.acronym or i.name for i in self.to_groups.all()])
90
91
- to = self.to_name
+ to = self.to_contacts
92
return slugify("liaison" + " " + self.submitted.strftime("%Y-%m-%d") + " " + frm[:50] + " " + to[:50] + " " + self.title[:115])
93
94
@property
0 commit comments