From 59e0d89521ba34c241b3ed2bd63cfc9fa8cd98ae Mon Sep 17 00:00:00 2001 From: Patrick Mayr Date: Mon, 21 Mar 2022 13:03:45 +0000 Subject: [PATCH] update title in head --- fet2020/templates/authentications/login.html | 2 +- fet2020/templates/base.html | 2 +- fet2020/templates/blackboard/index.html | 2 +- fet2020/templates/flatpages/default.html | 2 +- fet2020/templates/flatpages/social_media.html | 3 +++ fet2020/templates/gallery/album.html | 2 +- fet2020/templates/gallery/index.html | 2 +- fet2020/templates/intern/attachment.html | 2 ++ fet2020/templates/intern/attachment/attachment_create.html | 2 ++ fet2020/templates/intern/attachment/attachment_update.html | 2 ++ fet2020/templates/intern/etherpad_create.html | 2 ++ fet2020/templates/intern/file_create.html | 2 ++ fet2020/templates/intern/index.html | 2 ++ fet2020/templates/intern/task_create.html | 2 ++ fet2020/templates/intern/topic.html | 2 ++ fet2020/templates/intern/topic/topic_create.html | 2 ++ fet2020/templates/intern/topic/topic_update.html | 2 ++ fet2020/templates/members/jobs.html | 2 +- fet2020/templates/members/member.html | 2 +- fet2020/templates/members/members.html | 2 +- fet2020/templates/posts/index.html | 2 +- fet2020/templates/posts/show.html | 2 +- fet2020/templates/posts/tag.html | 2 +- fet2020/templates/tasks/attachment_create.html | 2 ++ fet2020/templates/tasks/index.html | 2 ++ fet2020/templates/tasks/task_create.html | 2 ++ fet2020/templates/tasks/task_detail.html | 2 ++ fet2020/templates/tasks/task_update.html | 2 ++ 28 files changed, 45 insertions(+), 12 deletions(-) diff --git a/fet2020/templates/authentications/login.html b/fet2020/templates/authentications/login.html index dbae1c2f..caaa90d8 100644 --- a/fet2020/templates/authentications/login.html +++ b/fet2020/templates/authentications/login.html @@ -1,6 +1,6 @@ {% extends 'base.html' %} -{% block title %}FET: Login{% endblock %} +{% block title %}Login{% endblock %} {% block content %} diff --git a/fet2020/templates/base.html b/fet2020/templates/base.html index c18a194f..64db1a2c 100644 --- a/fet2020/templates/base.html +++ b/fet2020/templates/base.html @@ -6,7 +6,7 @@ - {% block title %}FET: Startseite{% endblock %} + FET: {% block title %}Startseite{% endblock %} diff --git a/fet2020/templates/blackboard/index.html b/fet2020/templates/blackboard/index.html index 85903d17..8d2e5e01 100644 --- a/fet2020/templates/blackboard/index.html +++ b/fet2020/templates/blackboard/index.html @@ -1,6 +1,6 @@ {% extends 'base.html' %} -{% block title %}FET: Blackboard{% endblock %} +{% block title %}Blackboard{% endblock %} {% block content %} diff --git a/fet2020/templates/flatpages/default.html b/fet2020/templates/flatpages/default.html index 4232dc9e..2965b2fb 100644 --- a/fet2020/templates/flatpages/default.html +++ b/fet2020/templates/flatpages/default.html @@ -1,6 +1,6 @@ {% extends 'base.html' %} -{% block title %}FET: {{ flatpage.title }}{% endblock %} +{% block title %}{{ flatpage.title }}{% endblock %} {% block content %} diff --git a/fet2020/templates/flatpages/social_media.html b/fet2020/templates/flatpages/social_media.html index 6d2f7f44..40d67252 100644 --- a/fet2020/templates/flatpages/social_media.html +++ b/fet2020/templates/flatpages/social_media.html @@ -1,5 +1,8 @@ {% extends 'layout.html' %} {% load static %} + +{% block title %}Social Media{% endblock %} + {% block content %}
diff --git a/fet2020/templates/gallery/album.html b/fet2020/templates/gallery/album.html index 9b46dfe5..ca110714 100644 --- a/fet2020/templates/gallery/album.html +++ b/fet2020/templates/gallery/album.html @@ -1,7 +1,7 @@ {% extends 'base.html' %} {% load static %} -{% block title %}FET: {{ album.title }}{% endblock %} +{% block title %}{{ album.title }}{% endblock %} {% block galleryheader %} diff --git a/fet2020/templates/gallery/index.html b/fet2020/templates/gallery/index.html index 9b055c64..a45f166a 100644 --- a/fet2020/templates/gallery/index.html +++ b/fet2020/templates/gallery/index.html @@ -1,6 +1,6 @@ {% extends 'base.html' %} -{% block title %}FET: Gallery{% endblock %} +{% block title %}Gallery{% endblock %} {% block content %} diff --git a/fet2020/templates/intern/attachment.html b/fet2020/templates/intern/attachment.html index 7a8fabed..b6acdde8 100644 --- a/fet2020/templates/intern/attachment.html +++ b/fet2020/templates/intern/attachment.html @@ -1,5 +1,7 @@ {% extends "base.html" %} +{% block title %}{{ attachment.title }}{% endblock %} + {% block content %}
diff --git a/fet2020/templates/intern/attachment/attachment_create.html b/fet2020/templates/intern/attachment/attachment_create.html index a0fa4ee8..6a72184c 100644 --- a/fet2020/templates/intern/attachment/attachment_create.html +++ b/fet2020/templates/intern/attachment/attachment_create.html @@ -1,5 +1,7 @@ {% extends 'base.html' %} +{% block title %}Anhang Ordner hinzufügen{% endblock %} + {% block content %}
diff --git a/fet2020/templates/intern/attachment/attachment_update.html b/fet2020/templates/intern/attachment/attachment_update.html index b4c0f305..9ba1f166 100644 --- a/fet2020/templates/intern/attachment/attachment_update.html +++ b/fet2020/templates/intern/attachment/attachment_update.html @@ -1,5 +1,7 @@ {% extends 'base.html' %} +{% block title %}{{ attachment.title }} bearbeiten{% endblock %} + {% block content %}
diff --git a/fet2020/templates/intern/etherpad_create.html b/fet2020/templates/intern/etherpad_create.html index 5c9ec01d..bbc3f3a3 100644 --- a/fet2020/templates/intern/etherpad_create.html +++ b/fet2020/templates/intern/etherpad_create.html @@ -1,5 +1,7 @@ {% extends 'base.html' %} +{% block title %}Etherpad hinzufügen{% endblock %} + {% block content %}
diff --git a/fet2020/templates/intern/file_create.html b/fet2020/templates/intern/file_create.html index a973f843..9a9a6460 100644 --- a/fet2020/templates/intern/file_create.html +++ b/fet2020/templates/intern/file_create.html @@ -1,5 +1,7 @@ {% extends 'base.html' %} +{% block title %}Datei hinzufügen{% endblock %} + {% block content %}
diff --git a/fet2020/templates/intern/index.html b/fet2020/templates/intern/index.html index 0005fe94..eac174a5 100644 --- a/fet2020/templates/intern/index.html +++ b/fet2020/templates/intern/index.html @@ -1,5 +1,7 @@ {% extends "base.html" %} +{% block title %}Intern{% endblock %} + {% block content %}
diff --git a/fet2020/templates/intern/task_create.html b/fet2020/templates/intern/task_create.html index 488a2793..921860ed 100644 --- a/fet2020/templates/intern/task_create.html +++ b/fet2020/templates/intern/task_create.html @@ -1,5 +1,7 @@ {% extends 'base.html' %} +{% block title %}Task hinzufügen{% endblock %} + {% block content %}
diff --git a/fet2020/templates/intern/topic.html b/fet2020/templates/intern/topic.html index 89416462..6b888f7b 100644 --- a/fet2020/templates/intern/topic.html +++ b/fet2020/templates/intern/topic.html @@ -1,5 +1,7 @@ {% extends "base.html" %} +{% block title %}{{ active_topic.title }}{% endblock %} + {% block content %}
diff --git a/fet2020/templates/intern/topic/topic_create.html b/fet2020/templates/intern/topic/topic_create.html index c67bf6b6..0409d091 100644 --- a/fet2020/templates/intern/topic/topic_create.html +++ b/fet2020/templates/intern/topic/topic_create.html @@ -1,5 +1,7 @@ {% extends 'base.html' %} +{% block title %}Thema hinzufügen{% endblock %} + {% block content %}
diff --git a/fet2020/templates/intern/topic/topic_update.html b/fet2020/templates/intern/topic/topic_update.html index 8f427df6..fe375c53 100644 --- a/fet2020/templates/intern/topic/topic_update.html +++ b/fet2020/templates/intern/topic/topic_update.html @@ -1,5 +1,7 @@ {% extends 'base.html' %} +{% block title %}{{ topic.title }} bearbeiten{% endblock %} + {% block content %}
diff --git a/fet2020/templates/members/jobs.html b/fet2020/templates/members/jobs.html index d4782f43..a7ccb550 100644 --- a/fet2020/templates/members/jobs.html +++ b/fet2020/templates/members/jobs.html @@ -1,6 +1,6 @@ {% extends 'members/index.html' %} -{% block title %}FET: {{ active_job_group.name }}{% endblock %} +{% block title %}{{ active_job_group.name }}{% endblock %} {% block jobs_content %}
diff --git a/fet2020/templates/members/member.html b/fet2020/templates/members/member.html index 638b4929..3d0358ae 100644 --- a/fet2020/templates/members/member.html +++ b/fet2020/templates/members/member.html @@ -1,7 +1,7 @@ {% extends 'members/index.html' %} {% load softhyphen_tags %} -{% block title %}FET: {{ member.firstname }} {{ member.surname }}{% endblock %} +{% block title %}{{ member.firstname }} {{ member.surname }}{% endblock %} {% block extraheader %} diff --git a/fet2020/templates/members/members.html b/fet2020/templates/members/members.html index f991e8f0..d3e47a57 100644 --- a/fet2020/templates/members/members.html +++ b/fet2020/templates/members/members.html @@ -1,6 +1,6 @@ {% extends 'members/index.html' %} -{% block title %}FET: Fachschaft{% endblock %} +{% block title %}Fachschaft{% endblock %} {% block members_content %} {% if fs_info %} diff --git a/fet2020/templates/posts/index.html b/fet2020/templates/posts/index.html index af1b7abb..cfd0c0ad 100644 --- a/fet2020/templates/posts/index.html +++ b/fet2020/templates/posts/index.html @@ -2,7 +2,7 @@ {% load post_helpers %} -{% block title %}FET: News{% endblock %} +{% block title %}News{% endblock %} {% block content %} diff --git a/fet2020/templates/posts/show.html b/fet2020/templates/posts/show.html index 3c1cba68..f028f732 100644 --- a/fet2020/templates/posts/show.html +++ b/fet2020/templates/posts/show.html @@ -3,7 +3,7 @@ {% load post_helpers %} {% load admin_urls %} -{% block title %}FET: News{% endblock %} +{% block title %}News{% endblock %} {% block extraheader %} diff --git a/fet2020/templates/posts/tag.html b/fet2020/templates/posts/tag.html index 3ac955b0..850eabf6 100644 --- a/fet2020/templates/posts/tag.html +++ b/fet2020/templates/posts/tag.html @@ -1,6 +1,6 @@ {% extends 'base.html' %} -{% block title %}FET: News{% endblock %} +{% block title %}News{% endblock %} {% block content %} diff --git a/fet2020/templates/tasks/attachment_create.html b/fet2020/templates/tasks/attachment_create.html index 959ac037..acbc812b 100644 --- a/fet2020/templates/tasks/attachment_create.html +++ b/fet2020/templates/tasks/attachment_create.html @@ -1,5 +1,7 @@ {% extends 'base.html' %} +{% block title %}Etherpad hinzufügen{% endblock %} + {% block content %}
diff --git a/fet2020/templates/tasks/index.html b/fet2020/templates/tasks/index.html index 05032e63..6433bca2 100644 --- a/fet2020/templates/tasks/index.html +++ b/fet2020/templates/tasks/index.html @@ -1,5 +1,7 @@ {% extends 'base.html' %} +{% block title %}Tasks{% endblock %} + {% block content %}
diff --git a/fet2020/templates/tasks/task_create.html b/fet2020/templates/tasks/task_create.html index 19ae706a..46663920 100644 --- a/fet2020/templates/tasks/task_create.html +++ b/fet2020/templates/tasks/task_create.html @@ -1,5 +1,7 @@ {% extends 'base.html' %} +{% block title %}Task hinzufügen{% endblock %} + {% block content %}
diff --git a/fet2020/templates/tasks/task_detail.html b/fet2020/templates/tasks/task_detail.html index e3910eef..3f7d0694 100644 --- a/fet2020/templates/tasks/task_detail.html +++ b/fet2020/templates/tasks/task_detail.html @@ -1,5 +1,7 @@ {% extends 'base.html' %} +{% block title %}{{ task.title }}{% endblock %} + {% block content %}
diff --git a/fet2020/templates/tasks/task_update.html b/fet2020/templates/tasks/task_update.html index bdbd451d..207f43c8 100644 --- a/fet2020/templates/tasks/task_update.html +++ b/fet2020/templates/tasks/task_update.html @@ -1,5 +1,7 @@ {% extends 'base.html' %} +{% block title %}{{ task.title }} bearbeiten{% endblock %} + {% block content %}