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.
Source:stackexchange.com