1👍
✅
The problem is that you are passing an string
as form
not the instance
of SubmitDomain
change this:
return render(request, 'VA/index.html', {
'form' : 'form'
})
for this:
return render(request, 'VA/index.html', {
'form' : form
})
Source:stackexchange.com