我想將自定義表單傳遞給模板文件。Django 1.10將表單對象傳遞給模板
模板:
{{ form }} # prints nothing
瀏覽:
class EntertainerDisplay(FormView):
form_class = EntertainerCheckboxForm
template_name = 'entertaining/custom_form.html'
表:
class EntertainerCheckboxForm(forms.Form):
class Meta:
model = Entertainer
fields = ['first_name',
'second_name',
'last_name'
]
不管我做什麼,form
變量永遠不會在View
上下文中,因此不會發送到template file
。如何將表單及其字段傳遞到form
變量template file
?