Hi,

I pass to my template a dictionary of answer -> [attach_list]

so the data structure is

answers_list[answer] = attach_list


Inside the template I actually can read the answers:

{%  for answer in answers_list.keys %}
    #use the answer object

    # answer_list.answer returns a attach list, right?
    {% for attach in answer_list.answer %}
       # use the attach
       # but nothing happens!            
    {% endfor %}

any idea?
-Salvatore

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to