{% extends "data_wizard/base_site.html" %} {% block content %} {% if not result.unknown_count %}

Mapped Identifiers

{% else %}

Unknown Identifiers

{% csrf_token %} {% endif %} {% for type in result.types %}

{{type.type_label}} Identifiers

{% for id in type.ids %} {% endfor %}
Identifier Occurences {{type.type_label}}
{{id.value}} {{id.count}} {% if id.unknown %} {% else %} {{id.match}} {% endif %} {% for m in id.meta %} {{m.name}}: {{m.value}}
{% endfor %}
{% endfor %} {% if not result.unknown_count %} {% include "data_wizard/continue.html" %} {% else %}
{% endif %} {% endblock %}