Skip to content
Snippets Groups Projects
Verified Commit 27d2663a authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Fix syntax.

parent 3199dc7a
No related branches found
No related tags found
No related merge requests found
...@@ -216,7 +216,7 @@ def full_register_group(request: HttpRequest, id_: int) -> HttpResponse: ...@@ -216,7 +216,7 @@ def full_register_group(request: HttpRequest, id_: int) -> HttpResponse:
context['weeks'] = weeks context['weeks'] = weeks
context['periods_by_day'] = periods_by_day context['periods_by_day'] = periods_by_day
context['today'] = date.today() context['today'] = date.today()
context['school'] School.objects.first() context['school'] = School.objects.first()
return render(request, 'alsijil/print/full_register.html', context) return render(request, 'alsijil/print/full_register.html', context)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment