~cjohnston/loco-team-portal/686271

« back to all changes in this revision

Viewing changes to loco_directory/meetings/models.py

  • Committer: Michael Hall
  • Date: 2010-12-16 13:01:35 UTC
  • mfrom: (341.1.1 meeting-details)
  • Revision ID: mhall119@gmail.com-20101216130135-uen6skrzu77xg9kv
Fixes to meeting details, merge from Chris Johnston

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
    channel = models.CharField(max_length=150, verbose_name=_('Meeting Channel'), help_text=_('Channel that the meeting will be held in. Include #'), null=True)
17
17
    logs = models.URLField(verbose_name=_('Meeting Log'), help_text=_('After the meeting, add a link to the meeting log'), max_length=200, verify_exists=False, blank=True, null=True)
18
18
    date_created = models.DateTimeField(help_text=_('the date and time when the event was created'), default=datetime.datetime.now(), db_index=True)
19
 
    chair = models.ForeignKey(UserProfile, blank=True, null=True)
 
19
    chair = models.ForeignKey(UserProfile, verbose_name=_('Meeting Chair'), blank=True, null=True)
20
20
 
21
21
    def __unicode__(self):
22
22
        return self.name