templatetag

How to embed a tag within a url templatetag in a django template?

How do I embed a tag within a url templatetag in a django template? Django 1.0 , Python 2.5.2 In views.py def home_page_view(request): NUP={"HOMEPAGE": "named-url-pattern-string-for-my-home-page-view"} variables = RequestContext(request, {'NUP':NUP}) return render_to_response('home_page.html', variables) In home_page...

django templatetag?

how to use the templatetag of django app? ...

Django template tag + template with user.is_authenticated doesn't work

Hi all, I have a strange problem, in my settings file everything is enabled that needs to be enabled for user.is_authenticated use in a template. I have the following template tag code: from django import template from progmatic.cms.models import navigation, navigation_item from django.template.defaultfilters import slugify from djang...