RE: Nested for loops in templates

2018-06-15 Thread Matthew Pava
TEMPLATE_STRING_IF_INVALID) or settings.TEMPLATE_STRING_IF_INVALID From: django-users@googlegroups.com [mailto:django-users@googlegroups.com] On Behalf Of Mikkel Kromann Sent: Friday, June 15, 2018 6:36 AM To: Django users Subject: Re: Nested for loops in templates Thanks Matthew. The field_list is a lis

Re: Nested for loops in templates

2018-06-15 Thread Mikkel Kromann
n-a-django-template?utm_medium=organic&utm_source=google_rich_qa&utm_campaign=google_rich_qa > > > > > > *From:* django...@googlegroups.com [mailto: > django...@googlegroups.com ] *On Behalf Of *Mikkel Kromann > *Sent:* Wednesday, June 13, 2018 3:54 PM > *To:* Django u

Re: Nested for loops in templates

2018-06-15 Thread Mikkel Kromann
Thank you Vijay. That link seems to be a feasible path for me to take (reproduced below). Perhaps you or others can help me with an additional question (I am a bit new to both Python and Django), that I'm struggling with: Which type of data structure is Django iterating over in the templates (i

RE: Nested for loops in templates

2018-06-13 Thread Matthew Pava
?utm_medium=organic&utm_source=google_rich_qa&utm_campaign=google_rich_qa From: django-users@googlegroups.com [mailto:django-users@googlegroups.com] On Behalf Of Mikkel Kromann Sent: Wednesday, June 13, 2018 3:54 PM To: Django users Subject: Nested for loops in templates Dear Django users. T

Re: Nested for loops in templates

2018-06-13 Thread Vijay Khemlani
As far as I know you can't do it directly in the templating system Yo could write a template tag as described here https://stackoverflow.com/questions/2894365/use-variable-as-dictionary-key-in-django-template/10700142#10700142 or use a different data structure, for example each row as a list of

Nested for loops in templates

2018-06-13 Thread Mikkel Kromann
Dear Django users. Thanks to the good advice of many people on this list, I've managed to create some nice generic class based views that work simultaneously with many models. The models may differ from each other with regards to the number of columns in their data tables as well as the naming