[Answered ]-Django database connection issue

2👍

Look for the typo here:

return render(request, ‘app/MMIR.html’,{‘oder_list‘:order_list});

change that to

return render(request, 'app/MMIR.html',{'order_list':order_list});

and I suspect you’ll be in good shape.

👤AMG

Leave a comment