I am working with the new version of django-threadedcomments and making some progress; it integrates nicely with django's commenting system, however, I'm stuck and not sure how to proceed.
For threaded comments to work, the user needs to select a comment to "reply to" and then the correct submit form is brought up (with the appropriate hidden fields) via javascript.
Not using javascript, I would simply use:
{% render_comment_form for [object] with [parent_id] %}
However, I am not sure how I can use this template tag within a javascript function because it will compile/create itself only once; how can I pass it the [parent_id]
variable dynacmically via javascript/ajax?