Konstantin Keller
Konstantin Keller

Reputation: 3

Custom Templates/Forms for Django Comments

How would I make my own custom templates/forms for the built in Django Comments Framework?

Upvotes: 0

Views: 929

Answers (1)

arie
arie

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

Related Questions