summaryrefslogtreecommitdiffstats
path: root/main/models.py
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2010-03-02 01:57:58 +0100
committerDan McGee <dan@archlinux.org>2010-04-19 05:54:10 +0200
commit8e6bb3d794cd8c8d684115b325d8c33f530e5ecc (patch)
tree7216414a4b2980d69cf3a9177a4317274ea2a805 /main/models.py
parentd38d1cbd349447d3e8c8f8e1cf65af2fb7bb6815 (diff)
downloadarchweb-8e6bb3d794cd8c8d684115b325d8c33f530e5ecc.tar.gz
archweb-8e6bb3d794cd8c8d684115b325d8c33f530e5ecc.tar.xz
Remove Press model and admin
A link to the wiki was already present, but the model and admin had not been removed. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'main/models.py')
-rw-r--r--main/models.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/main/models.py b/main/models.py
index a7a750a..45c6540 100644
--- a/main/models.py
+++ b/main/models.py
@@ -103,16 +103,6 @@ class MirrorRsync(models.Model):
class Meta:
verbose_name = 'Mirror Rsync IP'
-class Press(models.Model):
- id = models.AutoField(primary_key=True)
- name = models.CharField(max_length=255)
- url = models.CharField(max_length=255)
- def __unicode__(self):
- return self.name
- class Meta:
- db_table = 'press'
- verbose_name_plural = 'press'
-
class AltForum(models.Model):
id = models.AutoField(primary_key=True)
language = models.CharField(max_length=255)