{% extends "base.html" %} {% block title %}{{ _('Import Preview') }}{% endblock %} {% block content %}

{{ _('Import Preview') }}

{{ _('Sites') }}
    {% for s in plan.sites %}
  • {{ s.sito }} — {% if s.da_creare %}{{ _('to create') }}{% else %}{{ _('exists') }}{% endif %}
  • {% endfor %}
{{ _('Periodizations') }} ({{ plan.periodizations|length }})

{{ plan.periodizations|selectattr('action','equalto','create')|list|length }} {{ _('to create') }}, {{ plan.periodizations|selectattr('action','equalto','update')|list|length }} {{ _('to update') }}

{{ _('US records') }} ({{ plan.us_records|length }})

{{ plan.us_records|selectattr('action','equalto','create')|list|length }} {{ _('to create') }}, {{ plan.us_records|selectattr('action','equalto','update')|list|length }} {{ _('to update') }}

{{ _('Relationships') }} ({{ plan.relationships|length }})
{% if plan.warnings %}
{{ _('Warnings') }}:
{% endif %} {% if plan.conflicts %}
{{ _('Conflicts') }}:
{% endif %}
{{ _('Cancel') }}
{% endblock %}