From a8456c4ca7ce8549e2c7f0f13e9c436267685e9a Mon Sep 17 00:00:00 2001 From: Merlin Buczek Date: Thu, 13 Jun 2019 21:06:20 +0200 Subject: [PATCH] Change login message --- mpicms/templates/wagtailadmin/home.html | 5 +++++ mpicms/templates/wagtailadmin/login.html | 6 ++++++ 2 files changed, 11 insertions(+) create mode 100644 mpicms/templates/wagtailadmin/home.html create mode 100644 mpicms/templates/wagtailadmin/login.html diff --git a/mpicms/templates/wagtailadmin/home.html b/mpicms/templates/wagtailadmin/home.html new file mode 100644 index 0000000..9e6e87d --- /dev/null +++ b/mpicms/templates/wagtailadmin/home.html @@ -0,0 +1,5 @@ +{% extends "wagtailadmin/home.html" %} + +{% load i18n %} + +{% block branding_welcome %}{% trans "Welcome to the Intranet CMS" %}{% endblock %} \ No newline at end of file diff --git a/mpicms/templates/wagtailadmin/login.html b/mpicms/templates/wagtailadmin/login.html new file mode 100644 index 0000000..5d327db --- /dev/null +++ b/mpicms/templates/wagtailadmin/login.html @@ -0,0 +1,6 @@ +{% extends "wagtailadmin/login.html" %} + + +{% load i18n %} + +{% block branding_login %}{% trans "Login to the Intranet" %}{% endblock %} \ No newline at end of file