From c6776844d88c6e8452feb134eaf3afc6c0e94488 Mon Sep 17 00:00:00 2001
From: Tom Teichler <tom.teichler@teckids.org>
Date: Tue, 3 Sep 2019 16:45:30 +0200
Subject: [PATCH] Fix title.

---
 biscuit/apps/alsijil/templates/alsijil/group_week.html | 4 +---
 biscuit/apps/alsijil/templates/alsijil/lesson.html     | 3 ++-
 2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/biscuit/apps/alsijil/templates/alsijil/group_week.html b/biscuit/apps/alsijil/templates/alsijil/group_week.html
index 607b01cd9..e8f8d4e93 100644
--- a/biscuit/apps/alsijil/templates/alsijil/group_week.html
+++ b/biscuit/apps/alsijil/templates/alsijil/group_week.html
@@ -2,9 +2,7 @@
 {% extends "core/base.html" %}
 {% load bootstrap4 font_awesome i18n week_helpers %}
 
-{% block bootstrap4_extra_head %}
- <title>{% block bootstrap4_title %}{% blocktrans%}BiscuIT - Current week{% endblocktrans %}{% endblock %}</title>
-{% endblock %}
+{% block bootstrap4_title %}{% blocktrans%}Current week{% endblocktrans %} - {{ block.super }}{% endblock %}
 
 {% block page_title %}
  {% blocktrans %}Current week{% endblocktrans %}
diff --git a/biscuit/apps/alsijil/templates/alsijil/lesson.html b/biscuit/apps/alsijil/templates/alsijil/lesson.html
index 52c71b909..0c61a8739 100644
--- a/biscuit/apps/alsijil/templates/alsijil/lesson.html
+++ b/biscuit/apps/alsijil/templates/alsijil/lesson.html
@@ -4,10 +4,11 @@
 
 {% block bootstrap4_extra_head %}
  {{ block.super }}
- <title>{% block bootstrap4_title %}{% blocktrans%}BiscuIT - Lesson documentation{% endblocktrans %}{% endblock %}</title>
  <link rel="stylesheet" href="{% static 'css/alsijil/lesson.css' %}" />
 {% endblock %}
 
+{% block bootstrap4_title %}{% blocktrans%}Lesson documentation{% endblocktrans %} - {{ block.super }}{% endblock %}
+
 {% block page_title %}
  {{ day }} - 
 
-- 
GitLab