1 2 3 4 5 6 | # <mysite>/globaltags/__init__.py
from django.template import add_to_builtins
add_to_builtins('globaltags.pyif')
add_to_builtins('globaltags.expr')
add_to_builtins('globaltags.dbinfo')
|
More like this
- Currency Widget by Rupe 2 years, 8 months ago
- Currency Field Admin Integration by Rupe 2 years, 8 months ago
- XFN Assist by Turophile 3 years, 1 month ago
- Currency Form Field by Rupe 2 years, 8 months ago
- Currency DB Field by Rupe 2 years, 8 months ago
Comments
Took me a second to realize I still had to add
'<mysite>.globaltags'toINSTALLED_APPS, then it worked like a charm! Thanks.#