{% extends 'frontend.html.twig' %}
{% block beta %}
{{ title }}
{% endblock %}
{% block gamma %}
{% if compilationsOfInterest|length and type != 'collection' %}
Die Inhalte der angezeigten Korrekturen stammen aus den Online-Beständen von
{% for key, coi in compilationsOfInterest %}
{% if key != 'BOEP' %}{% if loop.first == false %}, {% endif %}<a href="{{ path('PapyrillioBeehive_ApiaryHoney', {'type': 'bl', 'id': coi.volume }) }}" title="{{ coi.short }}">{{ coi.short|replace({' ' : ' '})|raw }}</a>{% endif %}
{% endfor %}
{% if compilationsOfInterest.BOEP is defined %}
{% if compilationsOfInterest|length > 1 %}, {% endif %}<a href="{{ path('PapyrillioBeehive_ApiaryHoney', {'type': 'collection', 'id': 'BOEP' }) }}" title="Bulletin of Online Emendations to Papyri">BOEP</a>
{% endif %}
{% if type not in ['bl', 'editie', 'search'] and corrections|length and corrections|first.registerEntries|length %}
{% set r = corrections|first.registerEntries|first %}
<br />
Weitere identifier und Links:
<a href="http://www.trismegistos.org/text/{{ r.tm }}" title="Weitere Informationen auf Trismegistos" target="_blank">TM {{ r.tm }}</a>
=
<a href="https://papyri.info/hgv/{{ r.hgv }}" title="Weitere Informationen auf papyri.info" target="_blank">{{ r.ddb }}</a>
=
HGV {{ r.hgv }}
{% endif %}
{% elseif type == 'collection' %}
{% if id == 'BOEP' %}
Es ist jetzt möglich, alle BOEP-Korrekturen an einem Ort einzusehen. Diese sind alphabetisch nach ihrer BL-Abkürzung geordnet. Es ist nicht mehr notwendig, jedes einzelne BOEP zu überprüfen. Die laufenden Nummern sind nachträglich hinzugefügt worden.
{% elseif id == 'ddb' %}
Alle Korrekturen im BOEP, die dokumentarische Texte betreffen, sind an einem Ort gesammelt. Sie sind alphabetisch nach ihrem BL-Kürzel geordnet.
{% elseif id == 'dclp' %}
Alle Korrekturen im BOEP, die literarische und halbliterarische Texte betreffen, werden an einem Ort gesammelt. Sie sind alphabetisch nach ihrem BL-Kürzel geordnet.
{% endif %}
{% endif %}
{% endblock %}
{% block lefty_title %}
{%if type != 'editie' and corrections|length %}
{% if type == 'volume' %}
{{ id }} in
<br/>
BL Online
{% elseif type == 'register' %}
Editionen für Register-Id {{ id }}
{% elseif type == 'collection' and id == 'ddb' %}
Editionen für BOEP doc.
{% elseif type == 'collection' and id == 'dclp' %}
Editionen für BOEP lit.
{% elseif type != 'search' %}
Editionen in
<br />
{% if type == 'collection' %}
{{ corrections|first.compilation.collection }}
{% elseif type == 'tm' or type == 'hgv' or type == 'ddb' or type == 'biblio' %}
{% if type == 'tm' or type == 'hgv' or type == 'biblio' %}{{ type | upper }} {% endif %}{{ id }}
{% elseif corrections|length %}
{{corrections|first.compilation.short}}
{% endif %}
{% endif %}
{% endif %}
{% endblock %}
{% block lefty %}
{% if type not in ['editie', 'search'] %}
<ul>
{% if type == 'boep' and id != 'Bulletin of Online Emendations to Papyri' %}
{% set collection = '' %}
{% for c in corrections %}
{% set currentCollection = c.registerEntries|length and c.registerEntries|first.dclp|length ? 'DCLP' : 'DDB' %}
{% if currentCollection != collection %}
<li><a href="#{{ currentCollection }}">{{ currentCollection }}</a></li>
{% set collection = currentCollection %}
{% endif %}
{% endfor %}
<hr />
{% endif %}
{% set edition = '' %}
{% for c in corrections %}
{% if c.edition.title != edition %}
<li>
<a href="#{{ c.edition.title|replace({' ': '_', '.': ''}) }}" class="edition">
{{ c.edition.title }}
</a>
</li>
{% set edition = c.edition.title %}
{% endif %}
{% endfor %}
</ul>
{% endif %}
{% endblock %}
{% block righty_title %}
{% if corrections|length %}
{% if type in ['tm', 'hgv', 'ddb', 'volume', 'biblio', 'register', 'editie'] %}
{% else %}
weitere
{{ corrections|first.compilation.collection }}s
{% endif %}
{% endif %}
{% endblock %}
{% block righty %}
{% if type in ['tm', 'hgv', 'ddb', 'volume', 'biblio', 'register', 'editie'] %}
{% else %}
<ul>
{% for c in compilations %}
{% if c.collection == 'BOEP' %}
<li><a href="{{ path('PapyrillioBeehive_ApiaryHoney', {'type': 'boep', 'id': c.title }) }}">{{ c.item}}</a></li>
{% else %}
{% if c.volume < 14 or c.volume > 100 %}
<li><a href="{{ path('PapyrillioBeehive_ApiaryHoney', {'type': 'bl', 'id': c.volume }) }}">{{ c.short}}</a></li>
{% endif %}
{% endif %}
{% endfor %}
</ul>
{% endif %}
{% endblock %}
{% block body %}
{% if corrections|length %}
{% if corrections|first.compilation.collection == 'BOEP' %}
{% include 'apiary/snippetBoep.html.twig' with {'corrections': corrections, 'type': type, 'id': id} %}
{% else %}
{% include 'apiary/snippetHoney.html.twig' with {'corrections': corrections, 'type': type, 'id': id} %}
{% endif %}
{% else %}
<p>Für {{ type|upper }} {{ id }} sind keine Datensätze abrufbar</p>
{% endif %}
{% endblock %}