Reputation: 3
How would I make my own custom templates/forms for the built in Django Comments Framework?
Upvotes: 0
Views: 929
Reputation: 18972
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.
Upvotes: 1