{% if request.user.is_authenticated %}
{% else %}
{% trans 'login or register to post comments' %}
{% endif %}
{% for comment in commentsection.get_comments %}
{% include 'social_layer/comments/render_comment.html' %}
{% endfor %}
{% include 'social_layer/comments/reply_mod.html' %}
{% if commentsection.featured and commentsection.get_comments > 3 %}
{% trans 'show more comments' %}
{% endif %}