Tagged Questions
4
votes
3answers
3k 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 ...
3
votes
2answers
1k 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. :)
...
2
votes
1answer
551 views
Django custom template tag with 'parser.compile_filter(tokens[2])' doesn't work
I tried to implement the solution proposed by T. Stone on my question "how-do-i-pass-a-lot-of-parameters-to-views-in-django" ([link text][1]).
I can't manage to get any result. It's difficult to find ...
2
votes
1answer
172 views
Can I use Django templatetags on Google App Engine?
My Django site has many templatetags directories, can I use Django templatetags on Google App Engine?
1
vote
1answer
53 views
Django unable to find my custom template tags?
I'm creating custom template tags for my django site. I've followed the django documentation for this and have created a templatetags directory in my main application.
/project/apps/core/templatetags
...
1
vote
1answer
371 views
Import Error when use templatetags in Django
Well, when I'm trying to use 'inclusion' in Django, I met some confused problems that I can't solve it by myself.
There is the structures for my project.
MyProject---
App1---
...
1
vote
2answers
184 views
How to get a template tag to auto-check a checkbox in Django
I'm using a ModelForm class to generate a bunch of checkboxes for a ManyToManyField but I've run into one problem: while the default behaviour automatically checks the appropriate boxes (when I'm ...
1
vote
1answer
344 views
Decorators on Django Template Filters?
I have a template filter that performs a very simple task and works well, but I would like to use a decorator on it. Unfortunately the decorator causes a nasty django error that doesn't make any ...
0
votes
2answers
407 views
Django: How to get field value dynamically using custom template tags?
I'm writing a generic template tag that could return a model's field value dynamically based on user inputs in template files. The idea follows which mentioned in the book "Practical Django Project ...
0
votes
1answer
744 views
Django - Determine field type of a variable passed to a template tag
I would like to write a Django template tag to which I can pass a variable.
I would like the template tag to behave differently depending on what type of model field the variable was derived from ...
0
votes
1answer
86 views
Load and Reuse Django Template Filters
Is it possible to load a django template tag/filter to use as a function in one of my template tags?
I'm trying to load up some of the django.contrib.humanize filters so I can apply them to the ...
0
votes
1answer
164 views
give an active to class to active link
I am writing a python website built on the back of the django framework, I am looking for a way to highlight the current link the user is on depening on what the URL, I thought doing some thing like ...