{% extends "web/base.html" %}
{% load static i18n %}
{% block content %}
{% include "web/passage/_metadata.html" with obj=passage only %}
{% include "web/passage/_descriptions.html" with descriptions=passage.descriptions.all object_pk=passage.pk object_kind="passage" user=user only %}
{% include "web/passage/_manuscripts.html" with manuscripts=passage.manuscripts.all object_pk=passage.pk object_kind="passage" user=user only %}
{% include "web/passage/_texts.html" with texts=texts object_pk=passage.pk object_kind="passage" user=user only %}
{% include "web/passage/_authors.html" with authors=passage.authors.all object_pk=passage.pk object_kind="passage" preferred_languages=preferred_languages user=user only %}
{% include "web/passage/_cities.html" with cities=passage.cities.all object_pk=passage.pk object_kind="passage" preferred_languages=preferred_languages user=user only %}
{% include "web/passage/_keywords.html" with keywords=keywords keywords_categories=keywords_categories object_pk=passage.pk object_kind="passage" user=user only %}
{% include "web/passage/_scholia.html" with scholia=passage.scholia.all object_pk=passage.pk passage=passage user=user only %}
{% include "web/passage/_comments.html" with comments=passage.comments.all object_pk=passage.pk object_kind="passage" user=user 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 %}
{% endblock %}
{% block footer %}