Hi
I have context variable "convar". And this convar consists of a dictionary.
So, it might look like:
convar
|-------- General case
|
|--------- Speical case A
|
|----------Special case B
So, the general case and the special cases are the keys. And there values are lists. And in these lists I have several objects from the database, e.g.
{'General case': [<Object: Object A>, <Object: Object B>, and so on]}
Right now, I am just confused how to get to the single objects in a django template and there fields like Object A.object_field.
I only get the name of the keys of the dictionary by using something like {% for key_var in convar %} {{ key_var}} {% endfor %}
Can you tell me how to correctly get to the values of the objects? :)