0

Is it possible with Django to have an overview of what is happening when I set an object with the admin interface ? Because I want to give ability to an admin to set some objects, then I want that some modifications automatically impact other objects. But I can't find where a the files or where are the functions called by the admin interface.

I looked into admin.py but it allows me to filter, exclude or display some fields, no interest for my problem.

Have you an idea how to see what is happening in admin side please ?

Thank your for reading

LucieDevGirl
  • 177
  • 10
  • please provide what you want to achive using admin if you want any modification you have to extend admin.modeladmin class in you admin.py. – Kishan Parmar Jul 27 '20 at 15:12
  • When a change happens on the field TITLE in object LESSON for example, the field SOUND of the same object would be automatically updated, (the sound would be generated with gTTS) so I want to receive a response when the admin changes something and I don't know where to find this response – LucieDevGirl Jul 28 '20 at 09:48
  • 1
    if you want to change something when any model changes the learn django signals https://docs.djangoproject.com/en/3.0/topics/signals/ – Kishan Parmar Jul 28 '20 at 14:06
  • 1
    thank you that's what I was searching – LucieDevGirl Jul 28 '20 at 15:22

0 Answers0