summaryrefslogtreecommitdiffstats
path: root/public
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2009-11-10 02:21:35 +0100
committerIsmael Carnales <icarnales@gmail.com>2009-11-10 20:52:29 +0100
commitc126492aba5b11415c9310f11c57f4ed580c3d86 (patch)
tree2fec69efabece120b082beb9334714aa4a5e8987 /public
parent0f4e480eecdf1958393e270f847476fbd97d4250 (diff)
downloadarchweb-c126492aba5b11415c9310f11c57f4ed580c3d86.tar.gz
archweb-c126492aba5b11415c9310f11c57f4ed580c3d86.tar.xz
Fix highlighting on main site tabs
We should always highlight 'Home' when on the Django site. The sole exception is the download page which has its own special place. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'public')
-rw-r--r--public/views.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/public/views.py b/public/views.py
index e301aae..39e5b5f 100644
--- a/public/views.py
+++ b/public/views.py
@@ -68,8 +68,7 @@ def moreforums(request):
return list_detail.object_list(request,
AltForum.objects.order_by('language', 'name'),
template_name="public/moreforums.html",
- template_object_name="forum",
- extra_context={"path": request.path})
+ template_object_name="forum")
# vim: set ts=4 sw=4 et: