0
votes
4answers
58 views
How to write better template tags in django…
I've seen how I can write template tags that set a context variable based on a template like this
{% my_template_tag 'blah' as my_context_variable %}
But I'd like to be able to do this:
given that …
0
votes
2answers
56 views
How to convert seconds to hh:mm:ss with the Django’s date template tag ?
Hello,
Edit : is there a way to easily convert {{ value|date:"Z" }} to one of the +hh:mm or -hh:mm formats (because date:"Z" returns xxxx or -xxxx seconds).
Show this for more explanations about the …
0
votes
3answers
68 views
Django redirect not working
I can see the problem, I attached my code and error page.
In my template, I have:
{% if user.get_profile.is_store %}
<!--DO SOME LOGIC-->
{%endif%}
In my view, I have:
def …
0
votes
1answer
31 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
18 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
75 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
1answer
22 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
3answers
59 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
47 views
Django MultiWidget Phone Number Field
I want to create a field for phone number input that has 2 text fields (size 3, 3, and 4 respectively) with the common "(" ")" "-" delimiters. Below is my code for the field and the widget, I'm …
0
votes
3answers
99 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
131 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>
…
0
votes
1answer
22 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
19 views
url template tag in django template
guys:
I was trying to use the url template tag in django, but no lucky,
I defined my urls.py like this
urlpatterns = patterns('',
url(r'^analyse/$', …
1
vote
1answer
68 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 …
0
votes
1answer
59 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 …
