summaryrefslogtreecommitdiffstats
path: root/public/views.py
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2009-11-09 19:21:35 -0600
committerIsmael Carnales <icarnales@gmail.com>2009-11-10 17:52:29 -0200
commitc126492aba5b11415c9310f11c57f4ed580c3d86 (patch)
tree2fec69efabece120b082beb9334714aa4a5e8987 /public/views.py
parent0f4e480eecdf1958393e270f847476fbd97d4250 (diff)
downloadarchweb-c126492aba5b11415c9310f11c57f4ed580c3d86.tar.gz
archweb-c126492aba5b11415c9310f11c57f4ed580c3d86.zip
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/views.py')
-rw-r--r--public/views.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/public/views.py b/public/views.py
index e301aaef..39e5b5fb 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: