render_to_response Is it possible to pass more variables than just one? For example in my application I have a members model and then i would like to display the members information and also attendance information. Would I have to supply the arguments as a tuple?
Thanks in Advance,
Dean
render_to_response Is it possible to pass more variables than just one? For example in
Share
Render_to_responseaccepts a context which is used for rendering. As far as I know there is no limitation on the number of variables you can pass in the context. This includes QuerySets. For example:My example uses
RequestContextbut it should be fine without it too.