[Answer]-Django 1.5. Users attributes in comments framework

1👍

According to built-in comment model documentation, you could access a user posted comment via {{ comment.user }} in your template. Consequently, you could access MyUser model fields like this {{ comment.user.email }} or {{ comment.user.first_name }}, etc.

Leave a comment