0
votes
3answers
19 views
render_to_response gives TemplateDoesNotExist
I am obtaining the path of template using
paymenthtml = os.path.join(os.path.dirname(__file__), 'template\\payment.html')
and calling it in another application where
paymenthtml gets copied to …
0
votes
2answers
45 views
In Django, How do I get escaped html in HttpResponse ?
The following code in one of my views returns unescaped html string which cannot be parsed in frontend since it is an Ajax request.
return render_to_response(template_name, {
'form': form,
…
0
votes
1answer
56 views
Django Dynamic menu design question
Hi,
I want to create dynamic menus according to user permissions. As was already discussed here and by the the documentation itself, I know that I can achieve this in the templates using the …
2
votes
4answers
41 views
Nested dot lookups in Django templates
According to The Django Book, Django's templating system supports nested dot lookups:
Dot lookups can be nested multiple levels deep. For instance, the following example uses {{ person.name.upper …
0
votes
1answer
26 views
Django 1.1 date-based generic view problem - archive_year, archive_month, archive_day
I'm on my first Django blog and when trying to get the posts by year, month and day, using the built-in generic view from Django, but I don't get proper results. (Sorry for my non-professional first …
0
votes
1answer
20 views
Django: Pagination with urls.py
I'm building a Blog in Django (using Generic Views) and I use the same template for both my date based and list detail views. I'm trying to setup pagination, but I want to do so with URL patterns …
1
vote
2answers
32 views
Bind shorter var names in django template
To the risk of being closed as duplicate (I can't really find it...) I have the following question. I am sure it's either under my nose, or not possible, but I prefer to ask.
Is it possible to bind …
0
votes
1answer
22 views
Django Templates: Wordwrap and indent block text
I'm a bit compulsive about having clean, readable and perfectly indented HTML. With Django’s template engine I almost have been able to achieve this with the exception of block text, or rather HTML …
2
votes
3answers
64 views
Django template and Python dictionary data structure question
I am trying to present a dictionary from my view.py at the HTML template such as:
test = { 'works': True, 'this fails':False }
and in the template:
This works without a problem:
{{ test.works }}
…
1
vote
3answers
44 views
Translate values dict-like in Django templates
In my Model I define choices along the lines of:
LANG_CHOICES = (
("Englisch", (
(u"en-gb", u"England"),
(u"en-us", u"United States of America"),
), )
The field is defined …
0
votes
2answers
48 views
Django general template controled by which variables?
I have been developing some Django app and there's some duplicated code for different Models. I'd like to create a generic table template and pass the Model class, a list of model instances, and Form …
2
votes
1answer
32 views
Is there a better way to debug NoReverseMatch in Django templates
If you change your urls.py or you stupidly write some template code that refers to a URL that ultimately doesn't reverse to a URL you get the infamous:
NoReverseMatch: Reverse for '<name>' …
1
vote
2answers
56 views
Nested blocks in Django templates
The master template in my Django app looks like this:
{% block parent %}
Some text...
{% block child %}
Default content here...
{% endblock child %}
...some more text
{% …
0
votes
2answers
34 views
Literals in django template language?
If I want some text to appear literally in a Django template, e.g.
{{Image.jpg|title}}
and I want that text to be output (not interpretated) in the HTML, how do I do so?
1
vote
4answers
55 views
Django Template Slice - Reversing Order
Thanks to a very helpful hint from another question I learned I can limit the amount of values in a list by slicing it in the template as such:
{% for comment in thread.comment_set.all|slice:":3" %}
…
