{% load i18n %} {% if texts %}

{% if texts|length > 2 %} {% translate "Alignments" %} {% else %} {% translate "Alignment" %} {% endif %}

{% for text in texts %} {% for alignment in text.meleager_alignment_text_1.all %}
{% for items in alignment.alignment_data.0 %} {% for item in items %} {% if item.t %} {{ item.t }} {% endif %} {% if item.p %} {{ item.p }}{% endif %} {%endfor%}
{%endfor%}
{% for items in alignment.alignment_data.1 %} {% for item in items %} {% if item.t %} {{ item.t }} {% endif %} {% if item.p %} {{ item.p }}{% endif %} {%endfor%}
{%endfor%}
{% endfor %} {% endfor %}
{% endif %}