|
35 | 35 | from django.db import models |
36 | 36 | from ietf.idtracker.models import Acronym |
37 | 37 |
|
38 | | -class TelechatMinutes(models.Model): |
39 | | - telechat_date = models.DateField(null=True, blank=True) |
40 | | - telechat_minute = models.TextField(blank=True) |
41 | | - exported = models.IntegerField(null=True, blank=True) |
42 | | - def get_absolute_url(self): |
43 | | - return "/iesg/telechat/%d/" % self.id |
44 | | - def __str__(self): |
45 | | - return "IESG Telechat Minutes for %s" % self.telechat_date |
46 | | - class Meta: |
47 | | - db_table = 'telechat_minutes' |
48 | | - verbose_name = "Telechat Minute Text" |
49 | | - verbose_name_plural = "Telechat Minutes" |
50 | | - class Admin: |
51 | | - pass |
| 38 | +# This table is not used by any code right now, and according to Glen, |
| 39 | +# probably not currently (Aug 2009) maintained by the secretariat. |
| 40 | +#class TelechatMinutes(models.Model): |
| 41 | +# telechat_date = models.DateField(null=True, blank=True) |
| 42 | +# telechat_minute = models.TextField(blank=True) |
| 43 | +# exported = models.IntegerField(null=True, blank=True) |
| 44 | +# def get_absolute_url(self): |
| 45 | +# return "/iesg/telechat/%d/" % self.id |
| 46 | +# def __str__(self): |
| 47 | +# return "IESG Telechat Minutes for %s" % self.telechat_date |
| 48 | +# class Meta: |
| 49 | +# db_table = 'telechat_minutes' |
| 50 | +# verbose_name = "Telechat Minute Text" |
| 51 | +# verbose_name_plural = "Telechat Minutes" |
| 52 | +# class Admin: |
| 53 | +# pass |
52 | 54 |
|
53 | 55 | class TelechatDates(models.Model): |
54 | 56 | date1 = models.DateField(primary_key=True, null=True, blank=True) |
|
0 commit comments