{% extends 'base.html' %} {% if current_user.is_authenticated %} {% include 'book/modals/delete_comment_modal.html' %} {% include 'book/modals/edit_comment_modal.html' %} {% block right_sidebar %} {% endblock %} {% endif %} {% block title %}{{ section.label[:32] }}{% endblock %} {% block content %} {% include 'book/breadcrumbs_navigation.html'%}

{{ section.label }}

{{display_tags(interpretation.text)|safe}}
{% if not current_user.is_authenticated %}

Connect you wallet to start contributing!

{% endif %} {% if current_user.is_authenticated %}
{{ form_hidden_tag() }}
{% endif %}
Comments:
{% for comment in interpretation.comments if not comment.is_deleted and not comment.parent_id%}
{% if comment.user_id != current_user.id %}
{% endif %} {{ comment.vote_count }} {% if comment.user_id != current_user.id %}
{% endif %} {% if interpretation.book.owner == current_user %}
{% endif %}

{{ display_tags(comment.text)|safe }}

Commented by {{comment.user.username}} on {{comment.created_at.strftime('%B %d, %Y')}} {% if comment.edited %} edited {% endif %}
{% if comment.user_id == current_user.id %}
{% endif %}
{% for child in comment.children if not child.is_deleted %}
{{display_tags(child.text)|safe}}
by {{child.user.username}} {{child.created_at.strftime('%B %d, %Y')}}
{% if child.user_id == current_user.id %}
{% endif %}
{% endfor %}
{% endfor %}
{% endblock %}