Tagged Questions

0
votes
1answer
41 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 …
0
votes
1answer
16 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 …
0
votes
1answer
22 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 …
2
votes
4answers
40 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 …
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
21 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
1answer
27 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
3answers
41 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 …
2
votes
3answers
62 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
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 …
1
vote
2answers
50 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
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" %} …
3
votes
3answers
75 views

Where to put a Django template’s dependent files?

My Django templates use a lot of related stuff: images, style sheets, etc. Where should I put these file, or how should I refer to them in the template itself? For now I'm using the development …
0
votes
3answers
52 views

How to assign value in Django Templates?

I have writing a template tag and take it to the templates: {% check_somethings value1 value2 as is_checked %} {% if is_checked %} # do it {% endif %} But there are some errors. I am doing so …
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 2 3 4 5 20 next
15 30 50 per page