{# -*- engine:django -*- #} {% extends "core/base.html" %} {% load data_helpers %} {% load i18n %} {% load render_table from django_tables2 %} {% block browser_title %}{% blocktrans %}Data checks{% endblocktrans %}{% endblock %} {% block page_title %}{% blocktrans %}Data checks{% endblocktrans %}{% endblock %} {% block content %} {% trans "Check data again" %} {% if results %}
{% trans "The system detected some problems with your data." %}

{% blocktrans %}Please go through all data and check whether some extra action is needed.{% endblocktrans %}

{% else %}
{% trans "Everything is fine." %}

{% blocktrans %}The system hasn't detected any problems with your data.{% endblocktrans %}

{% endif %} {% if results %}
{% trans "Detected problems" %}
{% for result in results %} {% if result.related_object %} {% endif %} {% endfor %}
{% trans "Affected object" %} {% trans "Detected problem" %} {% trans "Show details" %} {% trans "Options to solve the problem" %}
{{ result.id }} {% verbose_name_object result.related_object %} {{ result.related_object }} {{ result.related_check.problem_name }} {% trans "Show object" %} {% for option_name, option in result.related_check.solve_options.items %} {{ option.verbose_name }} {% endfor %}
{% endif %}
{% trans "Registered checks" %}
{% blocktrans %} The system will check for the following problems: {% endblocktrans %}
{% endblock %}