{% load i18n %} {% load txcommontags %}

{% trans "Create resource..." %}

{% csrf_token %}
{% trans "Create resource to be translated" %}

{% blocktrans %} Create a resource by selecting a source language and uploading a source translation file from your workstation, such as an English POT file. Transifex will analyze the file, extract the strings from inside it, and create your resource based on these. {% endblocktrans %}

{% comment %} Overridden form_as_table_rows in order to better customize it. {% endcomment %} {% if create_resource_form %} {% if create_resource_form.non_field_errors %}
    {{ create_resource_form.non_field_errors }}
{% endif %} {% for field in create_resource_form %} {% if field.is_hidden %} {{ field }} {% if field.errors %}

{{ field }}

{% for error in field.errors %}{{ error }}{% endfor %}

{% endif %} {% else %} {% endif %} {% endfor %} {% endif %}
{{ field.label }}: {% if field.field.required %}*{% endif %}

{{ field }}

{% if field.errors %}

{% for error in field.errors %}{{ error }}{% endfor %}

{% endif %}