{% csrf_token %}
{% for field in form %}
{{field}} {% if field.help_text %}

{{ field.help_text }}

{% endif %} {{ field.errors }}
{% if field.name == 'cover' and field.value.url %}
Capa para {{ recipe.title }}
{% endif %} {% endfor %}
{% if form.errors %}
There are errors in the form, please fix them and send again.
{% endif %}