{% extends "base.html" %} {% load i18n %} {% load url_tools %} {% load request_tools %} {% block title %} {% with request|tocorpus as corpus %} {% trans "Results" %} | {% trans "Concordancer" %} | {{ corpus.title }} | {{ block.super }} {% endwith %} {% endblock title %} {% block content %} {% with request|tocorpus as corpus %}

{% trans "Concordancer results" %} - {{ corpus.title }}


{% if results %}
    {% for result in results %}
  1. {% with result.hintedFragment|tojsonb64 as sentence_data %} {% endwith %} {% for taggedword in result.hintedFragment %} {{ taggedword.0 }} {{ taggedword.1 }} {% endfor %}
  2. {% endfor %}
{% else %} {% trans "Empty" %} {% endif %} {% endwith %} {% endblock content %}