{% extends "upload/layer_upload_base.html" %} {% load i18n %} {% load staticfiles %} {% block body_class %}data data-list upload{% endblock %} {% block title %} {% trans "Upload Layer Step 2" %} - {{ block.super }} {% endblock %} {% block head %} {{ block.super }} {% endblock %} {% block body %}

{% trans "Editing details for " %} {{ layer_name }}

{% trans "Time Options" %}

{% csrf_token %}

{% trans "Choose time attribute" %}:

{% if time_form.time_attribute %}
{{ time_form.time_attribute }}
{% endif %} {% if time_form.text_attribute %}
{{ time_form.text_attribute }}
{{ time_form.text_attribute_format }}
{% endif %} {% if time_form.year_attribute %}
{{ time_form.year_attribute }}
{% endif %}

{% trans "Choose optional end time attribute" %}:

{% if time_form.time_attribute %}
{{ time_form.end_time_attribute }}
{% endif %} {% if time_form.text_attribute %}
{{ time_form.end_text_attribute }}
{{ time_form.end_text_attribute_format }}
{% endif %} {% if time_form.year_attribute %}
{{ time_form.end_year_attribute }}
{% endif %}

{% trans "Present time attribute as" %}:

{% trans "Need Help?" %}

{% trans "Enabling Time" %}

{% blocktrans %}A feature can currently support one or two time attributes. If a single attribute is used, the feature is considered relevant at that single point in time. If two attributes are used, the second attribute represents the end of a valid period for the feature.{% endblocktrans %}

{% trans "Selecting an Attribute" %}

{% trans "A time attribute can be one of" %}:

{% blocktrans %} For text attributes, one can specify a custom format or use the 'best guess' approach. The most common formatting flags are: {% endblocktrans %}

{% trans "Note that single quotes represent a literal character." %}

{% trans "To remove ambiguity, repeat a code to represent the maximum number of digits - for example yyyy" %}

{% trans "The 'best guess' will handle date and optional time variants of" %} ISO-8601. {% trans "In terms of the formatting flags noted above, these are" %}:
    yyyy-MM-dd'T'HH:mm:ss.SSS'Z'
    yyyy-MM-dd'T'HH:mm:sss'Z'
    yyyy-MM-dd'T'HH:mm:ss'Z'
    yyyy-MM-dd'T'HH:mm'Z'
    yyyy-MM-dd'T'HH'Z'
    yyyy-MM-dd
    yyyy-MM
    yyyy
    
{% endblock %} {% block extra_script %} {% endblock %}