{% extends "web/base.html" %} {% load static i18n %} {% block content %}

{% translate "Scholium" %} {{ book.number }}.{{ passage.fragment }}{{ passage.sub_fragment }}.{{ scholium.number }}

{{ passage }}

{% include "web/passage/_metadata.html" with obj=scholium only %} {% include "web/passage/_manuscripts.html" with manuscripts=scholium.manuscripts.all only %} {% include "web/passage/_texts.html" with texts=scholium.texts.all add_text_to_passage_form=add_text_to_passage_form passage_pk=passage.pk csrf_token=csrf_token only %} {# TODO: pass pertinent forms and links to these reusable templates. #} {% comment %} {% include "web/passage/_cities.html" with cities=cities add_city_to_passage_form=add_city_to_passage_form passage_pk=passage.pk preferred_languages=preferred_languages csrf_token=csrf_token only %} {% include "web/passage/_keywords.html" with keywords=keywords keywords_categories=keywords_categories add_keyword_to_passage_form=add_keyword_to_passage_form passage_pk=passage.pk preferred_languages=preferred_languages csrf_token=csrf_token only %} {% include "web/passage/_comments.html" with comments=comments comment_create_form=comment_create_form passage_pk=passage.pk csrf_token=csrf_token only %} {% include "web/passage/_alignments.html" with texts=texts only %} {% include "web/passage/_internal_references.html" with internal_references=passage.internal_references.all only %} {% include "web/passage/_external_references.html" with external_references=passage.external_references.all only %} {% endcomment %} {% endblock %}