I have my custom template tag. How to load it at once, without {% load tag %} in every template-file?
UPD:
As suggested by Yuji:
from django.template.loader import add_to_builtins
add_to_builtins('myapp.templatetags.mytagslib')
however, I don't use django, only templates - what should i write instead of myapp.templatetags.mytagslib?
UPD2: ok, tried django.templatetags..., works ;-)