{% extends "backoffice/base.html" %} {% load humanize %} {% load i18n %} {% block content %}

ScheduleSource on "{{ object.assembly.slug }}"

ID {{ object.id }} edit delete

Assembly: {{ object.assembly|default:"WILDCARD" }}

Type: {{ object.import_type }}

URL: {{ object.import_url_masked }}

Frequency: {{ object.import_frequency|naturaltimespan }}

Timeout: {{ object.import_timeout|naturaltimespan }}

Last Import: {{ object.last_import|naturaltime|default:"(never)" }} Version: {{ object.last_import_version }}

Configuration:

{{ object.import_configuration_masked|json_indent }}

{% csrf_token %}
Imports
{% for import in imports %} {% endfor %} {% if has_more_imports %} {% endif %}
State Start End Summary  
{{ import.get_state_display }} {{ import.start|naturaltime }} {{ import.end|naturaltime }} {{ import.summary|linebreaks|default:"" }} Details
List limited to 10 entries.
Mappings
{% for mapping in object.mappings.all %} {% endfor %}
Type Source ID Local ID Skip  
{{ mapping.get_mapping_type_display }} {{ mapping.source_id|default:"-" }} {{ mapping.local_id|default:"-" }} {{ mapping.skip|yesno }}  
{% endblock content %}