I'm using Djangos CSRF-Token the way it's mostly described on the internet:
MyFormPage.html
<form method="POST">
{% csrf_token %}
{{ form.as_p }}
</form>
But I wonder - is there a way to include it somehow directly in the forms.py
?