{# -*- engine:django -*- #} {% extends "core/base.html" %} {% load data_helpers %} {% load html_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 %}
{% blocktrans %}Please go through all data and check whether some extra action is needed.{% endblocktrans %}
{% blocktrans %}The system hasn't detected any problems with your data.{% endblocktrans %}
{% 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 }} | {% if result.related_object.get_absolute_url %} {% trans "Show object" %} {% endif %} | {% for option_name, option in result.related_check.solve_options.items %} {{ option.verbose_name }} {% endfor %} |