Model for managing WG delegates. See #557

- Legacy-Id: 2687
This commit is contained in:
Emilio A. Sánchez López 2010-11-29 09:07:07 +00:00
parent c2209357e4
commit 6520954005
2 changed files with 17 additions and 0 deletions

View file

17
ietf/wgchairs/models.py Normal file
View 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"