Slow performance with Django admin model page [closed]
I have a problem with a change view of an model in Django. I have profiled the endpoint with different tools, and also took logs of the database queries run using shell plus. I can't see any long calls on the pg db and the cprofiler tool i used shows no long calls in the stack trace , but the response takes longer than 3 mins and i can't find a way to debug it.
I also inspected Django source code ModelAdmin and changeform_view it seems to not have slow performance issues there it returns immediately . Any help ?
Perhaps there is a problem with the rendering of the form ? Since the queries and the stacktrace shows no lag