{% extends "base.html" %} {% load url from future %} {% load i18n %} {% load translations %} {% block breadcrumbs %}
  • {{ object.project }}
  • {{ object.name }}
  • {% trans "source" %}
  • {% trans "review" %}
  • {% endblock %} {% block content %}

    {% trans "Strings to review" %}

    {% trans "First" %} {% trans "Previous" %} {% blocktrans with sources.number as position and sources.paginator.num_pages as total %}{{ position }} / {{ total }}{% endblocktrans %} {% trans "Next" %} {% trans "Last" %} {% if sources.object_list %} {% for source in sources.object_list %} {% endfor %}
    {% trans "Source" %} {% trans "Failing checks" %}
    {{ source.source|fmttranslation }} {% with source.active_source_checks as checks %} {% include "list-checks.html" %} {% endwith %} {% if source.get_source_comments.exists %} {% trans "Comment" %} {% endif %}
    {% else %}

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

    {% endif %} {% endblock %}