mirror of
https://github.com/Hopiu/django-model-utils.git
synced 2026-05-01 15:44:42 +00:00
6 lines
176 B
Python
6 lines
176 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
|