{% extends "comments/base.html" %} {% block content %}

コメント一覧

{% if user.is_authenticated %}

新しいコメントを投稿

{% endif %} {% for comment in comments %}

{{ comment.text }}

{{ comment.user.username }} - {{ comment.created_at }}
{% empty %}

まだコメントはありません。

{% endfor %} {% endblock %}