{% extends "base.html" %} {% load crispy_forms_tags i18n permissions translations %} {% block breadcrumbs %} {% path_object_breadcrumbs path_object %} {% endblock breadcrumbs %} {% block content %} {% perm 'translation.add_more' object as user_can_add_more_translation %}
{% csrf_token %}

{% translate "Start new translation" %}

{% translate "Please choose the language you want to translate to." %}

{{ form|crispy }} {% if user_can_add_more_translation %}

{% translate "Can't find your language in the list above?" %}

{% else %}

{% translate "This list includes only basic languages. Please contact project maintainers to add others." %}

{% endif %}
{% endblock content %}