django / django-contrib-comments

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

remove username when rendering comment

meetwudi opened this issue · comments

commented

{{ comment }} renders "username: comment" but not comment itself only. This is usually not needed. How to remove the username using customization?

commented

It was my fault. I was rendering {{ comment }} but actually I should render {{ comment.comment }}.