summaryrefslogtreecommitdiffstats
path: root/main/models.py
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2010-03-02 02:04:41 +0100
committerDan McGee <dan@archlinux.org>2010-04-19 06:27:27 +0200
commitec59440262596a03e2b374f96d24e295df56c9b8 (patch)
tree999a6f3bf90ebbedafdff38734c60ece35b2fb87 /main/models.py
parentd9e4a36fc96f7a0dd4b455189ee2ed45db005966 (diff)
downloadarchweb-ec59440262596a03e2b374f96d24e295df56c9b8.tar.gz
archweb-ec59440262596a03e2b374f96d24e295df56c9b8.tar.xz
Remove Arch-Based Projects
Add a link to the wiki instead. Also remove ExternalProject model and associated dealings. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'main/models.py')
-rw-r--r--main/models.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/main/models.py b/main/models.py
index c527964..5e376ec 100644
--- a/main/models.py
+++ b/main/models.py
@@ -335,12 +335,4 @@ class TodolistPkg(models.Model):
db_table = 'todolist_pkgs'
unique_together = (('list','pkg'),)
-class ExternalProject(models.Model):
- url = models.URLField(verify_exists=False)
- name = models.CharField(max_length=64)
- description = models.CharField(max_length=128)
-
- def __unicode__(self):
- return self.name
-
# vim: set ts=4 sw=4 et: