On Wed, Mar 18, 2009 at 2:03 PM, ihome <ihomest...@gmail.com> wrote:

>
> hi,
>
> i pass in one list of list into my template and want to iterate the
> list in template language. for example, list1 = [ [1,2], [3,4] ]
>
> initially i thought of using:
>
> {% for a in list1 %}
>  <tr><td>a[0]</td><td>a[1]</td></tr>
> {% endfor %}
>
> but i received this error:
>
> Could not parse the remainder: '[0]' from 'a[0]'
>
> any thoughts or suggestions?
>
> thanks.
> >
>
You use the . notation even for subscripting so i'ts just {{ a.0 }} or {{
a.1 }} alternatively you could just do a nested for loop.

Alex

-- 
"I disapprove of what you say, but I will defend to the death your right to
say it." --Voltaire
"The people's good is the highest law."--Cicero

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