{% extends 'hqwebapp/centered.html' %} {% load i18n %} {% load hq_shared_tags %} {% load hqstyle_tags %} {% block js %}{{ block.super }} {% endblock %} {% block js-inline %}{{ block.super }} {% endblock %} {% block centered-content %}

{% blocktrans with name=mapping.name%}Results from running '{{ name }}' mapping{% endblocktrans %}
{% if domain %} {% url sql_mappings_test domain mapping.get_id as test_url%} {% url sql_mappings_edit domain mapping.get_id as edit_url%} {% url sql_mappings_list domain as list_url%} {% else %} {% url sql_mappings_test mapping.get_id as test_url%} {% url sql_mappings_edit mapping.get_id as edit_url%} {% url sql_mappings_list as list_url%} {% endif %} {% if mapping.auto_generated %} {% trans "View" %} {% else %} {% trans "Edit" %} {% endif %} {% trans "Back" %}

{% if errors %}
{% trans "Some problems were found with the mapping that would prevent it from being run." %}
{% endif %} {% if warnings %}
{% trans "Warnings" %}
{% endif %} {% for c in data.columns %} {% endfor %} {% for row in data.rows %} {% for cell in row %} {% endfor %} {% endfor %}
{{ c }}
{{ cell }}
{% endblock %}