[Answer]-Django ModelForm not showing up in template

1👍

class KissListView(ListView):
...

You are using ListView which does not require form and will not give you form in the template context.

You may want to use CreateView instead.

👤Rohan

Leave a comment