何らかの理由で、他のすべてのフィールドが表示されているときに表示されません。
私が持っているforms.pyで
class addonForm(Form):
choices = [('true','true'),('false','false')]
name = CharField()
fixed = ChoiceField(choices=choices)
depth = DecimalField()
私が持っているviews.pyで
def myView(request):
context = RequestContext(request)
form = addonForm()
context.update({'form':form})
return render_to_response('addonPage.html',context)
そして、テンプレートaddonPage.htmlに私が持っています
...
{{ form }}
...
しかし、私のテンプレートでは、フォームに名前と固定要素のみを表示しています。私が間違っていることを理解していません。