{% if request.LANGUAGE_CODE == 'ja' %}タグ: {% else %}Tagged with: {% endif %}
{% for tag in post.tags.all %}
{{ tag.name }}
{% endfor %}
{% if request.LANGUAGE_CODE == 'ja' %}コメント{% else %}Comments{% endif %}
{% for comment in post.comments.all %}
{% if not comment.parent %}
{% include 'partials/_comment.html' with comment=comment %}
{% endif %}
{% endfor %}
{% if post.comments.all|length == 0 %}
{% if request.LANGUAGE_CODE == 'ja' %}コメント{% else %}Comments{% endif %}
{% for comment in post.comments.all %} {% if not comment.parent %} {% include 'partials/_comment.html' with comment=comment %} {% endif %} {% endfor %} {% if post.comments.all|length == 0 %}{% if request.LANGUAGE_CODE == 'ja' %}コメントはありません。{% else %}No comments yet.{% endif %}
{% endif %}