{% comment %} Owner from wave 2 on: portability-dev (see ORCHESTRIERUNG.md section 5). The resolution report, shared by the file import and by "load template" -- the two callers of the same resolver, so they show the same table. Context: ``report`` (portability.resolution.ResolutionReport). {% endcomment %} {% load i18n %} {% if report.issues %}
{% trans "This report cannot be stored in this event:" %}
{% blocktrans trimmed with found=report.found|length mapped=report.mapped|length missing=report.missing|length %} {{ found }} reference(s) found, {{ mapped }} matched to a different object, {{ missing }} not found. {% endblocktrans %} {% if report.values_checked %} {% blocktrans trimmed with checked=report.values_checked ok=report.values_ok %} {{ ok }} of {{ checked }} filter values exist in this event. {% endblocktrans %} {% endif %}
| {% trans "Where" %} | {% trans "In the file" %} | {% trans "In this event" %} | {% trans "Result" %} |
|---|---|---|---|
{{ entry.path }}
{% if entry.usage %}{{ entry.usage }}{% endif %} |
{{ entry.source }}
{% if entry.source_label %}{{ entry.source_label }}{% endif %} |
{% if entry.target %}
{{ entry.target }}
{% if entry.target_label %}{{ entry.target_label }}{% endif %} {% else %} – {% endif %} |
{% if entry.status == "found" %}
{% trans "found" %}
{% elif entry.status == "mapped" %}
{% trans "matched" %}
{% elif entry.status == "missing" %}
{% trans "not found" %}
{% elif entry.status == "ambiguous" %}
{% trans "ambiguous" %}
{% elif entry.status == "unverified" %}
{% trans "not verifiable" %}
{% endif %}
{% if entry.dropped %}
{% trans "will be removed" %}
{% endif %}
{% if entry.detail %} {{ entry.detail }}{% endif %} |