{% 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 %} {% can_edit_priority user project as user_can_edit_priority %} {% 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 "Priority" %} {% trans "Failing checks" %}
    {% format_translation source.source source.translation.subproject.project.source_language %} {{ source.source_info.get_priority_display }}{% if user_can_edit_priority %} {% endif %} {% if ignored %} {% show_checks source.translation.subproject.project source.source_checks user %} {% else %} {% show_checks source.translation.subproject.project source.active_source_checks user %} {% endif %} {% if comments %}
    {% trans "Comment" %}
    {% endif %}
    {% include "paginator.html" %} {% else %}

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

    {% endif %} {% endblock %}