summaryrefslogtreecommitdiffstats
path: root/public/views.py
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2010-03-01 18:55:09 -0600
committerDan McGee <dan@archlinux.org>2010-04-18 23:14:53 -0500
commit1709def7f196e863de990ce3d55de63f7a349268 (patch)
treec3cc4ab24dfaabb078f2dbcec52adb6f30271c1d /public/views.py
parent94b735a181cef2a42d19a2bde55d48727a0ce35a (diff)
downloadarchweb-1709def7f196e863de990ce3d55de63f7a349268.tar.gz
archweb-1709def7f196e863de990ce3d55de63f7a349268.zip
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/views.py')
-rw-r--r--public/views.py8
1 files changed, 1 insertions, 7 deletions
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(),