{% extends 'visko2/base.html' %} {% load staticfiles %} {% load visko2_tags %} {% block content %}

{% if doc.title%}{{ doc.title }}{%else%}{{doc.name}}{%endif %}

{% csrf_token %}
Collection Query
{% if sentences %} Found {{ sentences | length }} sentences. {% else %} Found nothing. {% endif %}
{% for sentence in sentences %} {% endfor %}
# doc/ident Sentence Parse
{{ forloop.counter }} {{sentence.doc.name}}/{{ sentence.ident }} {{sentence.text}}
{% if sentence.comment %} Note {{ sentence.comment|multilines }} {% endif %}
{% for parse in sentence %} #{{ parse.ID }}  {% endfor %}
{% endblock %} {% block script %} {% endblock %}