This is the form file of django.contrib.comments.forms:
https://github.com/django/django/blob/master/django/contrib/comments/forms.py
I need to create an object of that form and use it in template. I don’t want to make html form object manually in templates, I want to reuse that contrib.comments.forms.
How can i do it?
Something like this. May be need to modify this code depending on how do you want to process form data.