{% include "sb_admin/actions/translations-language-choice.html" %}
{% for language_code, form_list in translation_forms.items %}
{% for form in form_list %}
{% if form.errors %}
{% include "sb_admin/includes/form_error_alert.html" with errors_count=form.errors.items|length non_field_errors=form.non_field_errors %}
{% endif %}
{% endfor %}
{% endfor %}
{% for language_code, form_list in translation_forms.items %}
{% with first_lang=forloop.first %}
{% for form in form_list %}
{% for field in form %}
{{ field }}
{% if not first_lang %}
{% endif %}
{% if not field.is_hidden %}
{{ field.errors }}
{% endif %}