I'm looking at implementing django-threadedcomments and am wondering if it is able to restrict threading to replies made by a moderator/owner, similar to how Yelp handles user reviews and business owner replies.
For example the comments would look like:
"Comment 1" by User1
"Comment 2" by User2
"Reply 1" by Owner
"Comment 3" by User3
"Reply 2" by Owner
"Comment 4" by User4
"Comment 5" by User5
How would you do this in django-threadedcomments? Alternatively if you've done this using the built-in comments framework I'm open to doing it that way as well.
In case anyone else is looking for this, I was able to do this in django-threadedcomments by using the PARENT_ID in the
{% render_comment_form for [object] with [parent_id] %}
template tag.