Added "Geltungsbereich" back into search function and corrected it; Changed "standards" page to "dokumente" internally

This commit is contained in:
2025-10-23 09:35:23 +02:00
parent 969141601d
commit 7087be672a
4 changed files with 12 additions and 7 deletions

View File

@@ -9,9 +9,9 @@ calendar=parsedatetime.Calendar()
def standard_list(request):
standards = Dokument.objects.all()
dokumente = Dokument.objects.all()
return render(request, 'standards/standard_list.html',
{'dokumente': standards}
{'dokumente': dokumente}
)