2
votes
1answer
23 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>' …
0
votes
1answer
20 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 …
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 …
1
vote
3answers
40 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
95 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
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
3answers
57 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 }}
…
0
votes
2answers
32 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
2answers
47 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
{% …
1
vote
4answers
426 views
Sorting and indexing into a list in a Django template?
How can you perform complex sorting on an object before passing it to the template? For example, here is my view:
@login_required
def overview(request):
physicians = …
1
vote
4answers
54 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" %}
…
1
vote
3answers
25 views
Django 1.1 - comments - ‘render_comment_form’ returns TemplateSyntaxError
Hello,
I want to simply render a built-in comment form in a template, using Django's builtin commenting module, but this returns a TemplateSyntaxError Exception.
I need help debugging this error, …
0
votes
2answers
49 views
Django buggy template tag - ‘NoneType’ object has no attribute ‘source’
Wondering what is causing this? Had me stumped for some time, everything checks out in console when running in pieces
as a side note:
the template is using the same object in other places and …
0
votes
5answers
64 views
Django: Passing argument to parent template
Hello everyone
I have templates of this style
project
- main_templates (including nav bar)
-- app1
--- app1_base_template
--- app1_templates
-- app2
--- app2_base_template
--- app2_templates
So …
0
votes
0answers
21 views
Associate and display additional data with each form row in a Django formset
I'd like to be able to display additional information like a text label with each row in a Django formset.
Example/usecase:
User picks 5 rows in a model that would he would like some action …
