parent
c2209357e4
commit
6520954005
0
ietf/wgchairs/__init__.py
Normal file
0
ietf/wgchairs/__init__.py
Normal file
17
ietf/wgchairs/models.py
Normal file
17
ietf/wgchairs/models.py
Normal file
|
@ -0,0 +1,17 @@
|
|||
from django.db import models
|
||||
|
||||
from ietf.idtracker.models import IETFWG, PersonOrOrgInfo
|
||||
|
||||
|
||||
class WGDelegate(models.Model):
|
||||
person = models.ForeignKey(
|
||||
PersonOrOrgInfo,
|
||||
)
|
||||
|
||||
wg = models.ForeignKey(IETFWG)
|
||||
|
||||
def __unicode__(self):
|
||||
return "%s" % self.person
|
||||
|
||||
class Meta:
|
||||
verbose_name = "WG Delegate"
|
Loading…
Reference in a new issue