[Answer]-How do I override django.contrib.comments field widgets?

1👍

You can extend a class method like this:

class PostComment(CommentForm):
    def get_comment_create_date(self):
        data = super(PostComment, self).get_comment_create_data()
        data.update(dict(
            placeholder  = 'foo'
        ))
        return data

Leave a comment