{% extends base %} {% from 'macro.html' import breadcrumbs with context %} {% block content %}
{{- breadcrumbs([[url_for('story.view', pk=story.id), story.title]]) }} {% include 'includes/story_control_buttons.html' %}

{{ story.title }} {% if not story.original %} перевод{% endif %} {% if story.finished %} завершен{% endif %}{% if story.freezed %} заморожен{% endif %}

Комментарии бета-читателей и редакторов ({{ comments_count }})

Получать новые:
{% if comments_count > 0 %} {%- include 'includes/comments_tree.html' -%} {% endif %}
{% if local.bl.can_comment_by(current_user) %} Добавить новый комментарий
{% from 'macro.html' import comment_form_content with context %} {{ comment_form_content(comment_form, preview_html=preview_html) }}
{% elif current_user.is_authenticated %}

К сожалению, Вы не можете добавлять комментарии

{% else %} Авторизуйтесь для отправки комментария. {% endif %}
{% endblock %}