django-custom-tags

Django : How can I see what custom tags have been defined?

I'm having trouble with a custom tag in Django. Is there any way I can see a list of what custom tags have been defined and are currently registered? ...

Problem loading custom template tags (Error: No module named x)

Hi All, I am currently writing a few custom template tags but for some reason they will not load. My directory structure is as follows: MyProj | ----MyApp | |----templatetags | |----myapp_tags.py |----__init__.py In myapp_tags.py from django.template import Library, Node from myproj.myapp.mo...

django avatar custom template tag

My site is quite visual and I would like to make use of users avatars all over the site so I think that writing a custom template tag is the best way to go. My UserProfile is associated with a User and has an profile_pic. I am making use of django-imagekit and hence the ImageModel comes into play class UserProfile(ImageModel): p...