In my code, I currently have 2 models (Company and Individual Model)
Now I need to print both sets of data on the same report but it needs to be in alphabetical order
This is how I have referenced them in views.py separately
modelCompany = CompanyClass.objects.all().order_by('CompanyName')
modelIndividual = IndividualClass.objects.all().order_by('Surname')
But how would I be able to join them in the same list and organize them alphabetically?