diff options
author | Dan McGee <dan@archlinux.org> | 2010-03-01 19:04:41 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-04-18 23:27:27 -0500 |
commit | ec59440262596a03e2b374f96d24e295df56c9b8 (patch) | |
tree | 999a6f3bf90ebbedafdff38734c60ece35b2fb87 /main/models.py | |
parent | d9e4a36fc96f7a0dd4b455189ee2ed45db005966 (diff) |
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.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/main/models.py b/main/models.py index c5279640..5e376ec9 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: |