{% extends "base.html" %} {% load i18n %} {% load url_tools %} {% load request_tools %} {% block title %} {% with request|tocorpus as corpus %} {% trans "Sentence Automata" %} | Unitex/GramLab | {{ corpus.title }} | {{ block.super }} {% endwith %} {% endblock title %} {% block content %} {% with request|tocorpus as corpus %}

{% trans "Sentence Automata" %} - {{ corpus.title }}


{% if sentences %}
    {% for sentence in sentences %}
  1. {% with sentence.sentenca|tojsonb64 as sentence_data %} {% endwith %} {{ sentence.sentenca }}
    {% for item in sentence.componentes %} {{ item }} {% endfor %}
    {% for palavra in sentence.grafoLinear %} {% endfor %}
    {% for tag in palavra.1 %} {% endfor %}
    {{ tag.texto }}
    {{ tag.lema }}
    {% for item in tag.gramSem %}
    {{ item }}
    {% endfor %}
    {% for possibility in tag.flex %}
    {% for item in possibility %} {{ item }} {% endfor %}
    {% endfor %}
    {% if palavra.2 %} {% else %} {% endif %}
  2. {% endfor %}
{% else %} {% trans "Empty" %} {% endif %} {% endwith %} {% endblock content %}