One of my Django apps uses Django Comments. To show a list of comments on a page I use this simple built-in template tag:
- {%render_comment_listforobject%}
All is fine, but I noticed that it loads user object per every comment line. So if you have 50 comments on a ...