0
votes
1answer
20 views
Get type of Django form widget from within template
I'm iterating through the fields of a form and for certain fields I want a slightly different layout, requiring altered HTML.
To do this accurately, I just need to know the widget type. It's class …
0
votes
1answer
14 views
“Permission Denied” in Django template using Djapian
I've followed the Djapian tutorial and setup everything "by the book" so that the indexshell commandline supplied by Djapian shows successful queries.
However, when integrating the sample search from …
0
votes
1answer
16 views
Check if a session variable is set
I'd like to check if a certain variable is set inside my template...if it is set, an image will be displayed...I have written this as below in my template, but apparently it's not working.
{% if …
0
votes
5answers
74 views
Problem with logic in Django template
Supose this portion of a Django template. regs is a list of Reg objects. Reg.editable is a BooleanField.
I want to render a radio button per element in the list. If r.editable is False, the radio …
0
votes
3answers
58 views
Calling small app in template : Django
Lets say I have a website with a small application that lists the 10 newest members, or something dynamic like that. I want this to view on every page, perhaps in a sidebar. How would i go about doing …
0
votes
1answer
21 views
How to produce a list ordered by a manyToMany field and display it using {% ifchanged %} in a template?
I have two models, EqTD (EquivalentTextDescription) and location. EqTD has a manytomany relation to location. I need to produce a list of all EqTDs ordered by location name ('name' is a field in the …
0
votes
1answer
58 views
How can I get a variable passed into an included template in django
Hi,
I am a Django newbie and am unable to achieve something trivial. Please help me with this.
I am setting a variable pgurl in my views.py
Am able to access the variable {{pgurl}} in my …
0
votes
3answers
98 views
Does Django cache templates automatically?
I'm new to Django and trying to implement a voting system between two images. However, it looks like the page is being cached or something because when I refresh it, some values are wrong. I have no …
2
votes
3answers
130 views
Using keys with spaces
Is there a way to do something like the following in Django templates?
{% for hop in hops%}
<tr>
<td>{{ hop.name }}</td>
<td>{{ hop.mass }}</td>
…
1
vote
1answer
57 views
Dynamically Display field values in Django template (object.x)
Hi Guys,
I am currently working on an app that uses custom annotate querysets. Currently i have 2 urls setup, but i would need one for each field that the users would like to summarize data for. This …
3
votes
1answer
49 views
Can we append to a {% block %} rather than overwrite?
In my core.html I have a block labeled javascript. It would be great if I can append more lines to this block without overwriting everything in it.
1
vote
1answer
50 views
Customize HTML Output of Django ModelForm
I am trying to add multiple inline form items to a page using Djangos ModelForms. I need Select boxes bound to database models. The forms are formatted and placed in a tabular format so I need to …
0
votes
1answer
21 views
Optional ImageField (Django)
Hi all,
I'm having a problem with an ImageField in one of my models. It is set to blank=True, null=True (it is optional.)
When I loop through a list of objects and use object.thumbnail.url, I get …
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
46 views
Why is my Django app not displaying dynamic images when the path is correct?
My Django 1.1 app uses dynamic images.
I'm confused about why the path generated from my template tag:
{{image_product.photo.path}}
looks correct, but does not display the requested image.
This …
