Is it possible to make a Django model read only? No creating, updating etc.
N.B. this question is different to:
Make a Django model read-only? (this question all
Override the save and delete methods for the model. How are you planning to add objects to your model?
def save(self, *args, **kwargs): return def delete(self, *args, **kwargs): return