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:
- 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
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 1 week ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 2 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
Comments
Please login first before commenting.