0
votes
0answers
18 views
Using breadcrumbs with django-filter, QueryDict trouble
I'm using django-filter to drill down and would like to create breadcrumbs for each item that was filtered. For example:
Price ranges:
10,000+
5,000-9,999
1,000-4,999
0-999
Bedrooms:
4
3
2
1
Each …
0
votes
4answers
59 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
1answer
128 views
Writing a Template Tag in Django
I'm trying to customise a CMS written in Django. The content editors aren't flexible enough so I'm trying to come up with a better solution.
Without over-explaining it, I'd like it to be a bit like …
0
votes
2answers
57 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
69 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 …
1
vote
2answers
136 views
Is there anything in the Django / Python world equivalent to SimplePie Plugin for Wordpress?
I know that SimplePie itself is derived from UFP, but the features I'm wondering about are the post-processing features that are available in SimplePie for WordPress plugin:
…
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
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
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
3answers
60 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
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 …
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
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 …
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 …
