{% extends "base.html" %} {% load i18n %} {% load translations %} {% load static %} {% load permissions %} {% block breadcrumbs %}
  • {{ object.project }}
  • {{ object.name }}
  • {% trans "source strings" %}
  • {% trans "review" %}
  • {% endblock %} {% block content %} {% perm 'source.edit' project as user_can_edit_source %} {% include "paginator.html" %} {% if page_obj.object_list %} {% for source in page_obj.object_list %} {% with source.get_source_comments as comments %} {% endwith %} {% endfor %}
    {% trans "Source" %} {% trans "Context" %} {% trans "Failing checks" %}
    {% format_translation source.source source.translation.component.project.source_language %} {% if source.context %}{% format_translation source.context source.translation.component.project.source_language %}{% endif %}
    {% if ignored %} {% include "snippets/list-checks.html" with object=source.translation.component.project checks=source.source_checks %} {% else %} {% include "snippets/list-checks.html" with object=source.translation.component.project checks=source.active_source_checks %} {% endif %}
    {% if comments %}
    {% trans "Comment" %}
    {% endif %}
    {% include "paginator.html" %} {% else %}

    {% trans "No matching source strings found." %}

    {% endif %} {% endblock %}