FormView 派生クラスを定義する場合:
class PrefsView(FormView):
template_name = "prefs.html"
form_class = MyForm # What's 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 }}