Am building a Q&A page, sort of stackoverflow kinda page! Am having a bit of a problem trying to render the form. Am pasing 3 objects to the template that renders the page i.e. Question object, Answers related to the question and Answer form object.
In the first part of the page i want to display the Question, then the answers list follows, then at the bottom i display my form to enter the new answer.
On my template when i use the {{ extends "base_site.html" }} tag then only the form get rendered, When i remove that tag then only the Question section get displayed minus the form!!
How can i go round this problem?