Search Results

3
votes

How do I perform query filtering in django templates

I run into this problem on a regular basis and often use the "add a method" solution. However, there are definitely cases where "add a method" or "compute it in the view" don't work (or don't work …
0
votes

How do I list items in my Django models?

Good answer by VonC. A quick and dirty way to look at pub_list is to stick [{{pub_list}}] in your template. I put it in square brackets in case it's empty. BTW, you may get som …
3
votes

Syntax error whenever I put Python code inside a Django template

Django's template language is deliberately hobbled. When used by non-programming designers, this is definitely a Good Thing, but there are times when you need to do a little programming. ( …
0
votes

how to combine a template from other processed templates?

We had a problem similar to this and the key is getting the correct data into the Context. What we did was breakout the data creation/Context filling for each view into a separate build-the-context …
0
votes

templatetags don’t refresh

Look for "CACHE_BACKEND= ????" in your settings.py file. The value will change as a function of which caching mechanism you are using. Comment this out and restart the server. If your values are no …
1
vote

How do I make django show empty cells with it’s template system?

This is a known CSS/HTML 'problem.' You want to use Django's "default" filter. …
0
votes

How to create a specific if condition templatetag with Django ?

When all else fails you can use the {% expr whatever %} tag to compute a value and stick it in a variable that you can use in your template. I don't let designers know about it, but sometimes it's …