Tagged Questions

0
votes
3answers
48 views

Django templatetag for rendering a subset of html

I have some html (in this case created via TinyMCE) that I would like to add to a page. However, for security reason, I don't want to just print everything the user has entered. Does anyone know of a …
1
vote
2answers
290 views

Error importing external library within Django template tag library

So I'm attempting to write a Django reusable app that provides a method for displaying your Twitter feed on your page. I know well that it already exists 20 times. It's an academic exercise. :) …
1
vote
1answer
194 views

Django Paginated Comments .. is there any existing solutions?

Hi, is there any existing pagination solution for Django contrib.comments? What I need is just a simple paginated django comments, for the Basic Blog application (from the Django Basic Apps) I used, …
2
votes
2answers
814 views

python random.random() causes “’module’ object is not callable” when used in custom template tag

If I start python from the command line and type: import random print "Random: " + str(random.random()) It prints me a random number (Expected, excellent). If I include the above-two lines in my …
1
vote
2answers
132 views

In django, how can I iterate over the result of a custom template tag that requires arguments?

If I have created a templatetag: @register.simple_tag def last_books(a_cat, cutoff=5): objects = Books.objects.filter(category=a_cat) return objects[:cutoff] how can I do something like …
0
votes
2answers
111 views

templatetags don’t refresh

I have two templatetags in my app which contain forms which show entries in db. When I alter data or add new entry to db, the forms show the old data. While in admin panel everything is correct …
1
vote
1answer
110 views

templatetags do not render

for some reason, templatetags do not render in templates for django admin. with this snippet from: http://docs.djangoproject.com/en/dev/ref/templates/api/?from=olddocs#shortcut-for-simple-tags {% if …