1👍
✅
You can achieve it like this :
From the Django docs
<form action="/s={{ s }}/a={{ a }}/comment/q={{ q }}/" method="post">{% csrf_token %}
{% for field in form %}
<div class="fieldWrapper">
{# uncomment to display field errors #}
{# {{ field.errors }} #}
{{ field.label_tag }} {{ field }}
</div>
{% endfor %}
<button type="submit">Send your comment</button>
</form>
Source:stackexchange.com