Re: multiple templates fro single view

2013-08-01 Thread Fred Stluka
Can also use render_to_string(). --Fred Fred Stluka -- mailto:f...@bristle.com -- http://bristle.com/~fred/ Bristle Software, Inc -- http://bristle.com -- Glad to be of service! Open Source: Without walls and fences, we need

Re: multiple templates fro single view

2013-08-01 Thread Lukas Nemec
On 08/01/2013 03:04 PM, Harjot Mann wrote: On Thu, Aug 1, 2013 at 6:10 PM, Lukas Nemec wrote: Well, after some consideration, result of a view is rendered HTML page which you send to browser, what do you mean by rendering multiple templates? are you talking about template inheritance = one ro

Re: multiple templates fro single view

2013-08-01 Thread Harjot Mann
On Thu, Aug 1, 2013 at 6:10 PM, Lukas Nemec wrote: > Well, after some consideration, > > result of a view is rendered HTML page which you send to browser, > > what do you mean by rendering multiple templates? > are you talking about template inheritance = one root template which all > other templa

Re: multiple templates fro single view

2013-08-01 Thread Lukas Nemec
Well, after some consideration, result of a view is rendered HTML page which you send to browser, what do you mean by rendering multiple templates? are you talking about template inheritance = one root template which all other templates use? in that case, use {% extends 'root.html' %} tag, or

multiple templates fro single view

2013-08-01 Thread Harjot Mann
In my project I have a view which renders to an html template but I want to render two templates at the same time from one view. How ca I do it?? -- Harjot Kaur Mann Blog: http://harjotmann.wordpress.com/ -- You received this message because you are subscribed to the Google Groups "Django user