While I'm on the topic of linking objects to comments, a handy filter to have is the ability to convert an object into the linked object.
1.
@register
.filter
2.
def
get_comment_object(comment):
3.
"""
4.
This is the reverse, it gets an object from the comment
5.
"""
6.
return
comment.content_type.get_object_for_this_type(pk
=
comment.object_pk)
To use it, just call:
{{ comment|get_comment_object }}