Fix missing __unicode__ in IRTF proxy, it meant that the __unicode__
from Group was called instead - Legacy-Id: 3998
This commit is contained in:
parent
124b398729
commit
85d00e2a06
|
@ -233,6 +233,8 @@ class IRTF(Group):
|
|||
#meeting_scheduled = models.BooleanField(blank=True)
|
||||
def __str__(self):
|
||||
return self.acronym
|
||||
def __unicode__(self):
|
||||
return self.acronym
|
||||
#def chairs(self): # return a set of IRTFChair objects for this work group
|
||||
# return IRTFChair.objects.filter(irtf=self)
|
||||
class Meta:
|
||||
|
|
Loading…
Reference in a new issue