Атрибут template_name у FormView в Django
Атрибут template_name -
путь к шаблону. В контекст попадает
form:
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<button>send</button>
</form>
Создайте шаблон для FormView
с {{ form.as_p }}.