0
votes
2answers
25 views
How do I do a if a in list_b test in Django 0.96 Templates?
How do I do a if a in list_b test in Django 0.96 Templates?
I'm having a list of checkboxes and a variable containing a list of corresponding values from a previous submit of the …
1
vote
2answers
34 views
YSlow Best Practices with Django apps, How to implement them?
Hi,
I have an django 1.1.1 app, actually in developement, thinking in best practices I ran the YSlow test (Grade E Ruleset applied: YSlow V2 ) it recomends:
Grade F on Ad …
0
votes
4answers
35 views
Show page items count in django pagination.
Hi, everyone!
I'm trying to figure out how to show something like "Showing 1-10 of 52" using django pagination in my templates.
I accomplished the pagination itself but nothing c …
2
votes
1answer
30 views
how can I limit to display a message only upon the login
I would like to learn how to limit a particular part of a template to be displayed upon the user login. E.g. the greeting message in the home page will be displayed once after the …
2
votes
3answers
42 views
Edit Django User admin template
I need to edit the template shown for editing a specific user. I need to display some additional data that doesn't fit in with an include-style.
I apologise for the short question …
0
votes
1answer
18 views
Is there a way to specify a value from a list of one-to-many models at Django’s Template?
Is there a way to specify a value from a list of one-to-many models at Django's Template?
For example I can do this in the shell: author.book_set.get(publisher=my_publisher). H …
2
votes
2answers
54 views
Django tags for templates in Eclipse
Hi people.
I'm wondering if is it possible to have autocompletion, autoformatting, and those beautiful things working in Eclipse IDE for Django based templates.
Mainly for these …
0
votes
1answer
29 views
join template block-tag in django
Has anyone written a block template tag that joins arbitrary html snippets with some separator, where empty items are omitted?
Could be useful for rendering menu-like lists, wher …
2
votes
2answers
65 views
Best Practices: How to best implement Rating-Stars in Django Templates
I would like to have reusable ratings (typical layout with 5 stars).
I have found this http://www.thebroth.com/blog/119/css-rating-stars that explains how to display this using cs …
1
vote
1answer
27 views
Django ModelForm: accessing a field’s value in the view template
Q: Is it possible to pull out the value for one of my ModelForm's fields while in the template? If so, how?
Background:
I have a search form that I'm using to allow users to filte …
2
votes
2answers
38 views
Django - replacing built-in templatetag by custom tag for a whole site without {% load .. %}
I want to replace standart {% if %} template tag by "smart if" custom tag from this snippet, because I don't want to write {% load smart_if %} every time. And also "smart if" will …
0
votes
1answer
23 views
referencing a key/value in django-templates after applying a filter
say I have the following list that I provide to a django template
stuff= [ { 'a':2 , 'b':4 } , { 'a',7} ]
I want to access the 'a' attribute of the first element. I can't quite …
0
votes
2answers
22 views
Django Template For Loop Over request.META Dictionary
I am trying to loop over a dictionary, specifically the request object's meta property. It is a dictionary, but the following code is treating it like it is a list of strings. How …
0
votes
2answers
33 views
Django: Photologue does not show images in templates
I am trying to install django-photologue. Everything seems ok, because I install and set up following the official guidelines. I have to upload some photos as examples. However, wh …
1
vote
6answers
94 views
How do I DRY up common text in a Django template?
I have some static text that needs to show up at 2 locations within a template.
For example:
<div>
{% if something %}
This is a static text
{% else %}
Something e …
