{% extends "base.html" %} {% load i18n %} {% load translations %} {% block breadcrumbs %} {% if project %}
  • {{ project.name }}
  • {% if component %}
  • {{ component.name }}
  • {% endif %} {% if language %}
  • {{ language }}
  • {% endif %} {% endif %}
  • {% trans "Search" %}
  • {% endblock %} {% block content %} {% if page_obj.object_list %} {% for unit in page_obj.object_list %} {% endfor %}
    {{ unit.translation }} {% get_state_flags unit %}
    {% trans "Source" %} {% format_translation unit.source unit.translation.component.project.source_language search_match=search_query %}
    {{ unit.translation.language }} {% format_translation unit.target unit.translation.language unit.translation.plural search_match=search_query %}
    {% include "paginator.html" %} {% else %} {% trans "No matching strings found." as msg %} {% show_message "info" msg %} {% endif %} {% include "search-form.html" %} {% endblock %}