How would I make my own custom templates/forms for the built in Django Comments Framework?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you just want to override (specific) templates put them in templates/comments (a technique not only valid for contrib.comments but for all reusable apps including Django’s admin.).
If you want to edit the builtin forms you have to extend contrib.comments as mentioned and explained in the docs.