Re: Passing HTML Table to a Template

2009-02-26 Thread AmanKow
On Feb 26, 11:20 am, tyler kunter wrote: > thanks eric...I was able to fgure that out after a lil frustration thank you > for your response. > > On Thu, Feb 26, 2009 at 1:32 AM, Eric Abrahamsen wrote: > > > On Feb 26, 2009, at 4:30 PM, tykun...@gmail.com wrote: > > > > Hi I am trying to pass a

Re: Passing HTML Table to a Template

2009-02-26 Thread tyler kunter
thanks eric...I was able to fgure that out after a lil frustration thank you for your response. On Thu, Feb 26, 2009 at 1:32 AM, Eric Abrahamsen wrote: > > > On Feb 26, 2009, at 4:30 PM, tykun...@gmail.com wrote: > > > > > Hi I am trying to pass an HTML table to a template and have it display >

Re: Passing HTML Table to a Template

2009-02-26 Thread Eric Abrahamsen
On Feb 26, 2009, at 4:30 PM, tykun...@gmail.com wrote: > > Hi I am trying to pass an HTML table to a template and have it display > > Currently I have{{table1}} inside my template to mark the position > I wish to display the table > > In my views.py I havereturn render_to_response('resul

Passing HTML Table to a Template

2009-02-26 Thread tykun...@gmail.com
Hi I am trying to pass an HTML table to a template and have it display Currently I have{{table1}} inside my template to mark the position I wish to display the table In my views.py I havereturn render_to_response('results_s.html', {'table1': table1}) >From this all I get back is the cod