Skip to content

Commit 26b1622

Browse files
committed
Removed bunch of unused code/templates
- Legacy-Id: 1700
1 parent 469a60c commit 26b1622

9 files changed

Lines changed: 16 additions & 173 deletions

ietf/iesg/models.py

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -35,20 +35,22 @@
3535
from django.db import models
3636
from ietf.idtracker.models import Acronym
3737

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
5254

5355
class TelechatDates(models.Model):
5456
date1 = models.DateField(primary_key=True, null=True, blank=True)

ietf/templates/apps.html

Lines changed: 0 additions & 16 deletions
This file was deleted.

ietf/templates/iesg/telechatminutes_archive.html

Lines changed: 0 additions & 34 deletions
This file was deleted.

ietf/templates/iesg/telechatminutes_archive_month.html

Lines changed: 0 additions & 25 deletions
This file was deleted.

ietf/templates/iesg/telechatminutes_archive_year.html

Lines changed: 0 additions & 15 deletions
This file was deleted.

ietf/templates/iesg/telechatminutes_detail.html

Lines changed: 0 additions & 19 deletions
This file was deleted.

ietf/templates/meeting/index.html

Lines changed: 0 additions & 1 deletion
This file was deleted.

ietf/templates/meeting/submission_status_snippet.html

Lines changed: 0 additions & 34 deletions
This file was deleted.

ietf/views.py

Lines changed: 0 additions & 15 deletions
This file was deleted.

0 commit comments

Comments
 (0)