Login

Active link

Author:
ronnie
Posted:
November 30, 2011
Language:
Python
Version:
1.3
Score:
2 (after 2 ratings)

I needed a way to find if a menu items should be active. After searching the internet i found a few options*, but none of them did fit my needs, so i wrote my own:

Usage:

  • http://gnuvince.wordpress.com/2008/03/19/the-new-and-improved-active-tag/
  • http://stackoverflow.com/questions/340888/navigation-in-django
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
import re

from django import template
from django.core.urlresolvers import get_resolver

register = template.Library()

@register.simple_tag
def current(request, view):
    possible_results = get_resolver(None).reverse_dict.getlist(view)

    if len(possible_results) != 0 and re.match(possible_results[0][1], request.path[1:]):
        return 'current'
    return ''

More like this

  1. Template tag - list punctuation for a list of items by shapiromatron 2 months, 2 weeks ago
  2. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 2 months, 3 weeks ago
  3. Serializer factory with Django Rest Framework by julio 9 months, 3 weeks ago
  4. Image compression before saving the new model / work with JPG, PNG by Schleidens 10 months, 1 week ago
  5. Help text hyperlinks by sa2812 11 months ago

Comments

Please login first before commenting.