diff options
author | Dan McGee <dan@archlinux.org> | 2010-03-01 18:55:09 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-04-18 23:14:53 -0500 |
commit | 1709def7f196e863de990ce3d55de63f7a349268 (patch) | |
tree | c3cc4ab24dfaabb078f2dbcec52adb6f30271c1d /main/models.py | |
parent | 94b735a181cef2a42d19a2bde55d48727a0ce35a (diff) |
Remove International Communities
Add link to wiki instead. Also remove AltForum model and associated
dealings.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'main/models.py')
-rw-r--r-- | main/models.py | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/main/models.py b/main/models.py index 45c65406..c5279640 100644 --- a/main/models.py +++ b/main/models.py @@ -103,17 +103,6 @@ class MirrorRsync(models.Model): class Meta: verbose_name = 'Mirror Rsync IP' -class AltForum(models.Model): - id = models.AutoField(primary_key=True) - language = models.CharField(max_length=255) - url = models.CharField(max_length=255) - name = models.CharField(max_length=255) - def __unicode__(self): - return self.name - class Meta: - db_table = 'alt_forums' - verbose_name = 'AltForum' - class Donor(models.Model): id = models.AutoField(primary_key=True) name = models.CharField(max_length=255, unique=True) |