{% extends "upload/base.html" %} {% load i18n %} {% load static from staticfiles %} {% block title %} {% trans "Upload Layer" %} - {{ block.super }} {% endblock %} {% block main_class %}data upload{% endblock main_class %} {% block extra_head %} {% endblock %} {% block head %} {% include "geonode/ext_header.html" %} {% include "geonode/app_header.html" %} {{ block.super }} {% endblock %} {% block body %}

{% trans "Upload Layers" %}

{% if incomplete %}

Incomplete Uploads

You have the following incomplete uploads:

{% for u in incomplete %}
{{ u.name }}, last updated on {{ u.date }}
{% endfor %}
Are you sure you want to delete this upload?
Delete Cancel
Delete, and don't ask me again.
{% endif %} {% block additional_info %}{% endblock %} {% if errors %}
{% for error in errors %}
{{ error }}
{% endfor %}
{% endif %} {% if enough_storage %}

Drag and Drop files here

    {% trans "Files to be uploaded" %}

    Clear Upload files
    {% endif %}
    {% endblock %} {% block sidebar %} {% if enough_storage %}

    {% trans "Permissions" %}

    {% include "_permissions.html" %}
    {% endif %} {% endblock %} {% block extra_script %} {% include "_permissions_form_js.html" %} {% endblock extra_script %}