Re: Sending two list...using for loop in template

2007-12-04 Thread Tim Chase
> return render_to_response('webpage.htm', {'manu': s, 'thelist': > mylist}) > > / > > Here is what I have in my template > > {% for a in manu %} > {{ thelist.{{forloop.counter0}} }} > {% endfor %} Given that you're not using "a" in your loop, is there

Sending two list...using for loop in template

2007-12-03 Thread Greg
Hello, I'm sending two list to my template. I'm looping through one of my list in a for loop. Within that for loop I want to display that contents of my other list. Here is what I have so far: Here is my return statement in my view that calls the template. return