diff options
author | Dan McGee <dan@archlinux.org> | 2009-11-09 19:21:35 -0600 |
---|---|---|
committer | Ismael Carnales <icarnales@gmail.com> | 2009-11-10 17:52:29 -0200 |
commit | c126492aba5b11415c9310f11c57f4ed580c3d86 (patch) | |
tree | 2fec69efabece120b082beb9334714aa4a5e8987 /public | |
parent | 0f4e480eecdf1958393e270f847476fbd97d4250 (diff) |
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.py | 3 |
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: |