From 038cd3096056c8bfddaaa2caf12b1d687ba79d09 Mon Sep 17 00:00:00 2001 From: Michael Price Date: Tue, 20 Mar 2018 19:55:05 -0400 Subject: [PATCH] Display the project's name in the first time login panel. Signed-off-by: Michael Price --- mayan/apps/appearance/templates/authentication/login.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mayan/apps/appearance/templates/authentication/login.html b/mayan/apps/appearance/templates/authentication/login.html index 6d181e6d2f..808aa650a3 100644 --- a/mayan/apps/appearance/templates/authentication/login.html +++ b/mayan/apps/appearance/templates/authentication/login.html @@ -21,7 +21,8 @@

{% trans "First time login" %}

-

{% trans 'You have just finished installing Mayan EDMS, congratulations!' %}

+ {% project_information '__title__' as project_title %} +

{% blocktrans %}You have just finished installing {{ project_title }}, congratulations!' {% endblocktrans %}

{% trans 'Login using the following credentials:' %}

{% blocktrans with autoadmin_properties.account as account %}Username: {{ account }}{% endblocktrans %}

{% blocktrans with autoadmin_properties.account.email as email %}Email: {{ email }}{% endblocktrans %}