{% extends "upload/layer_upload_base.html" %} {% load i18n %} {% load staticfiles %} {% block title %} {% trans "Upload Layer" %} - {{ block.super }} {% endblock %} {% block body_class %}layers upload{% endblock %} {% block head %} {{ block.super }} {% endblock %} {% block body_outer %}
{% if incomplete %}

{% trans "Incomplete Uploads" %}

{% trans "You have the following incomplete uploads" %}:

{% for u in incomplete %}
{{ u.name }}, {% trans "last updated on" %} {{ u.date }}
{% endfor %}
{% endif %} {% block additional_info %}{% endblock %} {% if errors %}
{% for error in errors %}

{{ error }}

{% endfor %}
{% endif %}


{% trans "Drop files here" %}

{% trans " or select them one by one:" %}

    {% trans "Files to be uploaded" %}

    {% trans "Select the charset or leave default" %}

    {% trans "Clear" %} {% trans "Upload files" %}
    {% if GEONODE_SECURITY_ENABLED %}

    {% trans "Permissions" %}

    {% include "_permissions.html" %}
    {% endif %}
    {% endblock %} {% block extra_script %} {% if GEONODE_SECURITY_ENABLED %} {% with resource=layer %} {% include "_permissions_form_js.html" %} {% endwith %} {% endif %} {% endblock extra_script %}