[Answer]-Proper way to extend model classes in Django

1👍

Why do you want to make this functionality parts of the models at all? Usually these would be separate apps, with models that have relationships to articles. You can use generic relations to define a database relationship between your comment or voting app and the target models.

Leave a comment