5👍
✅
css:
<style type="text/css">
label{
margin-right: 5em; /* or larger if you need */
}
</style>
django template html file:
{% for field in form %}
<p>{{ field.label_tag }} {{ field }}</p>
{% endfor %}
Source:stackexchange.com