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

{% trans "Sentece List" %} - {{ corpus.title }}


{% if sentences %}
    {% for sentence in sentences %}
  1. {% with sentence|tojsonb64 as sentence_data %} {% endwith %} {{ sentence }}
  2. {% endfor %}
{% else %} {% trans "Empty" %} {% endif %} {% endwith %} {% endblock content %}