You don't understand me. WQhat I want to achieve is to use student.id as a key in dictionary (Im talking abous template) If I use:
{% for student in students %} ... do sth ... <p> {{dictionary.student.id }} </p> {% endfor %} using dictionary.1 works using dictionary.student.id doesnt work because there is no such key like student in dictionary. What can I do to convert student.id to value and pass it like for example dictionary. (student.id) if in this iteration student.id = 5 then i want to have {{ dictionary. 5 }} thats all On Aug 18, 6:15 pm, mettwoch <mettw...@pt.lu> wrote: > See this: > > http://docs.djangoproject.com/en/dev/ref/templates/builtins/#for > > There's an example of iterating over key, value pairs > > Marc > > On Aug 18, 5:48 pm, elminio <wgruszczyn...@gmail.com> wrote: > > > I iterate through all students and have distionary containing students > > ids as key and for example grade as a value. I pass this dictionary to > > the view and then while iterating through all students I though that > > it would be simple to get appropriate value for current student. I > > dont know how I could make it simplier in template :/ If You think so > > maybe any ideas? but please with sample code > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---