{% load i18n %}
{% csrf_token %} {% for field in form %}
{{ field.label_tag }}
{{ field }} {% if field.help_text %} {{ field.help_text }} {% endif %}
{% endfor %} {% if form.errors %}
{{ form.errors.as_text }}
{% endif %} {% if success is True %} {% if exists %}
{% trans 'This taxon already exists in your app.' %}
{% else %}
{% blocktrans with name=taxon %}Successfully added {{ name }}.{% endblocktrans %}
{% endif %} {% endif %}

{% if success is True %} {% endif %}