{{ user.name }}
{% endif %}
{{ topic['name'] }} {% if topicAccess.canChange(topic['category_id'], topic['author_id']) %} edit {% endif %}
{% if images|length > 0 %} {% endif %}{{ topic['content'] }}
{{ topic['comments_count'] }} {{ topic['comments_count'] == 1 ? 'Comment' : 'Comments' }}
{% for comment in comments %}
{% endfor %}
{% if comment['reply_to_content'] is not null %}
{% if pages > 1 %}
{{ comment['reply_to_content'] }}
{% endif %}
{% if commentImages[comment['id']] is not null %}
{% for imageId in commentImages[comment['id']] %}
{% endfor %}
{% endif %}
{{ comment['content'] }}
reply
Reply
{% if commentAccess.canChange(category['id'], comment['author_id']) %}
edit
Edit
{% endif %}
{% if commentAccess.canDelete(category['id'], comment['author_id']) %}
delete
Delete
{% endif %}
{{ page }} of {{ pages }} pages
{% endif %}
{% if page > 2 %}
First page
{% endif %}
{% if page > 1 %}
Back
{% endif %}
{% if page < pages %}
Next
{% endif %}
{% if page < pages and (pages - page) > 1 %}
Last page
{% endif %}