2023-05-05 16:51:55 +00:00
|
|
|
<!-- prettier-ignore -->
|
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
|
|
|
{% include 'book/delete_interpretation_modal.html' %}
|
|
|
|
{% include 'book/edit_interpretation_modal.html' %}
|
|
|
|
|
|
|
|
<!-- show delete section btn on rightside bar -->
|
|
|
|
{% set show_edit_interpretation = True %}
|
|
|
|
<!-- prettier-ignore -->
|
|
|
|
{% set show_delete_interpretation = True %}
|
|
|
|
|
|
|
|
<!-- prettier-ignore -->
|
|
|
|
{% block right_sidebar %}
|
|
|
|
{% include 'book/right_sidebar.html' %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2023-05-08 08:24:26 +00:00
|
|
|
{% include 'book/breadcrumbs_navigation.html'%}
|
|
|
|
<div class="overflow-x-auto shadow-md mt-5 md:mr-64">
|
|
|
|
<div class="ql-snow mt-20">
|
|
|
|
<h1 class="text-l font-extrabold dark:text-white ml-4">
|
|
|
|
{{ interpretation.label }}
|
|
|
|
</h1>
|
|
|
|
<div class="quill-editor dark:text-white">{{interpretation.text|safe}}</div>
|
|
|
|
</div>
|
2023-05-05 16:51:55 +00:00
|
|
|
</div>
|
|
|
|
<!-- prettier-ignore -->
|
|
|
|
{% endblock %}
|