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

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


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