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
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}
2 matches
Mail list logo