Migration of tables from an external database

2023-03-19 Thread Adekola Aderonmu
Hi guys, I need your assistance, so I have an external database with a particular table on it and I want to migrate that table into a new database that I have. Kindly direct me on how to achieved this. Thank you... On Thu, 16 Mar 2023, 19:23 nef, wrote: > Hi all, > I am facing problem to displ

Re: sub-list not showing

2023-03-19 Thread nef
I just solve the issue by modifying the view.py like this def parentsDetails(request, pk): parentObj = Parents.objects.get(parent_id=pk) std = Student.objects.filter(std_parents = parentObj.parent_id) # std = parentObj.student_set.all() context = {'parentObj': parentObj, 'std': std}