I am using django comment framework. It says it provides a lot of functionality, and I can also see in the source files that there are various options, but the documentation is a bit poor.
There are two issues
- I want to provide a
delete button
for each comment that is posted, and I don't want to redirect the user to another page. I just want the comment to be deleted with a confirmation message. I have not found any documentation that tells me how I can do this in thedjango comments framework
- If there is an
error while submitting the comment form
, the user isredirected to the preview page
(that handles errors also), I don't want this. I want the user to be redirected to the same page, with the appropriate errors. How can I go about doing this.
Any help or direction is appreciated