vote up 2 vote down star

I want to replace standart {% if %} template tag by "smart if" custom tag from this snippet, because I don't want to write {% load smart_if %} every time. And also "smart if" will come into core template system very soon

I forgot where I saw piece of code, that do this. Does anyone know, how to replace built-in templatetag?

flag

47% accept rate

2 Answers

vote up 1 vote down check

Not a full solution to replace the "if" tag, but you can automatically load template tags.

link|flag
Thanks! It's a best solution for me – ramusus Oct 29 at 1:04
vote up 2 vote down

Place this somewhere you know will get run:

from django.template import add_to_builtins
add_to_builtins('mysite.myapp.templatetags.smart_if')

... while placing smart_if.py containing the smart_if code at the appropriate location. This effectively overrides the if tag with "smart if" accross the whole site.

link|flag
Thanks! It's what I'm looking for – ramusus Oct 29 at 1:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.