При определении производного класса FormView:
class PrefsView(FormView):
template_name = "prefs.html"
form_class = MyForm # What wrong with this?
def get(self,request):
context = self.get_context_data()
context['pagetitle'] = 'My special Title'
context['form'] = MyForm # Why Do I have to write this?
return render(self.request,self.template_name,context)
Я ожидал, что строка context['form'] = MyForm
не нужна, поскольку form_class
определена, но без нее {{ form }}
не передается в шаблон.
Что я делаю неправильно?