mirror of
https://github.com/Hopiu/django-model-utils.git
synced 2026-03-16 20:00:23 +00:00
6 lines
177 B
Python
6 lines
177 B
Python
def pre_save_test(instance, *args, **kwargs):
|
|
instance.pre_save_runned = True
|
|
|
|
|
|
def post_save_test(instance, created, *args, **kwargs):
|
|
instance.post_save_runned = True
|