templates\boards\post_list.html
아래를 추가 하자.
<td>
<a href="{% url 'boards:detail' post.id %}">{{ post.title }}</a>
{% if post.comment_set.count > 0 %}
<span class="text-danger small mx-2">{{ post.comment_set.count }}</span>
{% endif %}
</td>
<td>{{ post.created_at }}</td>
아무글이나 댓글을 단후 확인
