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 /public | |
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 'public')
-rw-r--r-- | public/tests.py | 4 | ||||
-rw-r--r-- | public/views.py | 8 |
2 files changed, 1 insertions, 11 deletions
diff --git a/public/tests.py b/public/tests.py index c792343d..022560b2 100644 --- a/public/tests.py +++ b/public/tests.py @@ -35,10 +35,6 @@ class PublicTest(TestCase): response = self.client.get('/download/') self.assertEqual(response.status_code, 200) - def test_moreforums(self): - response = self.client.get('/moreforums/') - self.assertEqual(response.status_code, 200) - def test_projects(self): response = self.client.get('/projects/') self.assertEqual(response.status_code, 200) diff --git a/public/views.py b/public/views.py index 79dae55c..77fb6405 100644 --- a/public/views.py +++ b/public/views.py @@ -1,4 +1,4 @@ -from main.models import AltForum, Arch, Donor, MirrorUrl, News +from main.models import Arch, Donor, MirrorUrl, News from main.models import Package, Repo, ExternalProject from . import utils @@ -68,12 +68,6 @@ def download(request): template_object_name="mirror_url", extra_context={"path": request.path}) -def moreforums(request): - return list_detail.object_list(request, - AltForum.objects.order_by('language', 'name'), - template_name="public/moreforums.html", - template_object_name="forum") - def feeds(request): context = { 'arches': Arch.objects.all(), |