Hi there, i am still a newbie.-…i am aksing myself, how to perofrm hand over of multiple data throughout ONE view to a template. for ONE table, this is no problem, i am sure, it is also no problem for multible templates, but i am lacking the syntax …
def test(request):
dienstgrad = Dienstgrad_Anrede.objects.all()
titel = Titel.objects.all()
facharztbezeichnung = Facharztbezeichnung.objects.all()
zusatzbezeichnung = Zusatzbezeichnung.objects.all()
zusatzstudium = Zusatzstudium.objects.all()
einsatzbereich = Einsatzbereich.objects.all()
rotation = Rotation.objects.all()
ausbMil = Ausbildung_Militär.objects.all()
ausbZiv = Ausbildung_Zivil.objects.all()
tauglichkeit = Tauglichkeit.objects.all()
mandat = Mandat.objects.all()
berufsgruppe = Berufsgruppe.objects.all()
status = Status.objects.all()
sprache = Sprache.objects.all()
ergebnis = Ergebnis.objects.all()
… this would be the task…how do i get this handed over ?