2
votes
How to ensure that a javascript file is included only once in Django
I'd mostly bite the bullet and load jQuery with every template. But if you really really really have to have this feature, then I'd recommend a custom template tag. …
0
votes
implementing a template tag within a generic app - django
The ContentTypeManager has somewhat solved your first problem for you. You can use the method get_for_model, which accepts both a class or an instance. Read more at …
