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

Add missing %s.

parent e49d0131
No related branches found
No related tags found
No related merge requests found
......@@ -127,7 +127,7 @@ def lessons_day(request: HttpRequest, when: Optional[str] = None) -> HttpRespons
lessons_table = LessonsTable(lesson_periods.extra(select={'_week': week.week}).all())
RequestConfig(request).configure(lessons_table)
context['current_head'] = _('Lessons') % (day)
context['current_head'] = _('Lessons %s') % (day)
context['lessons_table'] = lessons_table
context['day'] = day
context['week'] = week
......
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