diff options
author | Dan McGee <dan@archlinux.org> | 2010-03-01 18:57:58 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-04-18 22:54:10 -0500 |
commit | 8e6bb3d794cd8c8d684115b325d8c33f530e5ecc (patch) | |
tree | 7216414a4b2980d69cf3a9177a4317274ea2a805 /main/models.py | |
parent | d38d1cbd349447d3e8c8f8e1cf65af2fb7bb6815 (diff) |
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.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/main/models.py b/main/models.py index a7a750ac..45c65406 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) |