{% extends "linkcheck/base_linkcheck.html" %} {% load i18n %} {% load linkcheck_model_tags %} {% block extrahead %} {{ block.super }} {% endblock %} {% block innercontent %}
{% translate "Show" %}:   {% if filter == 'show_valid' %}{% translate "Valid links" %}{% else %}{% translate "Valid links" %}{% endif %}   {% if filter == 'show_invalid' %}{% translate "Broken links" %}{% else %}{% translate "Broken links" %}{% endif %}   {% if filter == 'show_unchecked' %}{% translate "Untested links" %}{% else %}{% translate "Untested links" %}{% endif %}   {% if filter == 'ignored' %}{% translate "Ignored links" %}{% else %}{% translate "Ignored links" %}{% endif %} ({{ ignored_count }})
{% for content_type in content_types_list %}

{{content_type.content_type|get_verbose_name_plural}}

{% for object in content_type.object_list %}

{{report_type}} in '{{object.object}}'

   {% blocktrans with content_type_name=content_type.content_type.name %}View {{ content_type_name }}{% endblocktrans %}   {% if object.admin_url %}{% blocktrans with content_type_name=content_type.content_type.name %}Edit {{ content_type_name }}{% endblocktrans %}{% endif %} {% for link in object.link_list %} {% if link.url.redirect_to %} {% endif %} {% endfor %}
{% endfor %}
{% endfor %} {% if content_types_list %} {% include "linkcheck/paginator.html" %} {% endif %} {% endblock %}