{% extends "localizers/base.html" %} {% block title %} {# L10n: %s is a locale name or code ('German' or 'de') #} {{ page_title(_('Localization Summary for {0}')|f(userlang['native'])) }} {% endblock %} {% block content %} {{ impala_breadcrumbs([(url('localizers.dashboard'), _('Localization Dashboard'))]) }} {{ _('Category Localization for {0}')|f(userlang.native) }} {{ locale_switcher(current_locale=locale_code) }} {% if formset.errors %} {{ _('There are errors in this form. Please correct them below.') }} {% endif %} {% for app_id, cats in categories %} {% set app = apps[app_id] if app_id or None %} {% if app %} {{ app.pretty }} {% else %} {{ _('None') }} {% endif %} en-US {{ locale_code }} {{ _('Type') }} {% for cat in cats %} {% set form = form_map[cat.id] %} {% if form.errors %} {% for errors in form.errors.values() %}{{ errors }}{% endfor %} {% endif %} {{ cat.name }} {{ form.name }} {{ types[cat.type] }} {% for hidden in form.hidden_fields() %}{{ hidden }}{% endfor %} {% endfor %} {% endfor %} {{ formset.management_form }} {{ csrf() }} {% endblock content %}
{{ _('There are errors in this form. Please correct them below.') }}