Tagged Questions
The django-custom-tags tag has no wiki summary.
4
votes
6answers
1k views
Problem loading custom template tags (Error: No module named x)
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
|
...
1
vote
2answers
60 views
Django - non-consecutive months
I would like to produce a list on the side of my blog that shows the year and the months that have entries only, like this:
2011 - Jan, Feb
2010 - Jan, Mar, May, Jun, Jul, Aug, Oct, Nov, Dec
2009 - ...
1
vote
2answers
56 views
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?
0
votes
2answers
42 views
Django: Should custom template simple tags raise exception or fail silently?
I have tried to find answer to this question from the official docs, but all that I could find is:
render() should never raise TemplateSyntaxError or any other
exception. It should fail ...
0
votes
1answer
239 views
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 ...