[Answer]-Django – can i add a method to always get called when a "get" or "filter" is called on a model?

1👍

Take a look at the Manager object. You can create a subclass of the default manager with additional methods that do common filtering, in one place, instead of in every view.

Leave a comment