{% extends "base.html" %} {% load i18n %} {% load translations %} {% load humanize %} {% block breadcrumbs %} {% if path_object %} {% path_object_breadcrumbs path_object %}
  • {% trans "Checks" %}
  • {% if check %}
  • {{ check.name }}
  • {% endif %} {% elif check and not path_object %}
  • {% trans "Checks" %}
  • {{ check.name }}
  • {% else %}
  • {% trans "Checks" %}
  • {% endif %} {% endblock %} {% block content %} {% for row in object_list %} {% endfor %}
    {{ column_title }} {% trans "Total" %} {% trans "Dismissed" %} {% trans "Active" %} {% trans "Translated" %}
    {{ row.row_title }} {% if translate_links %} {{ row.check_count |intcomma}} {% else %} {{ row.check_count |intcomma}} {% endif %} {% if translate_links %} {{ row.dismissed_check_count |intcomma}} {% else %} {{ row.dismissed_check_count |intcomma}} {% endif %} {% if translate_links %} {{ row.active_check_count |intcomma}} {% else %} {{ row.active_check_count |intcomma}} {% endif %} {% if translate_links %} {{ row.translated_check_count |intcomma}} {% else %} {{ row.translated_check_count |intcomma}} {% endif %}
    {% if check %}

    {% trans "View check documentation" %}

    {% endif %} {% endblock %}