From 500213b5ab621fa10c1d9c8f0696adb623919171 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20M=C3=BCller?= <9070224-W13R@users.noreply.gitlab.com> Date: Wed, 29 Jun 2022 19:02:01 +0200 Subject: [PATCH] Use 'surname, forename' instead of 'forename surname' in userlist on login page --- application/app/templates/registration/login.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/application/app/templates/registration/login.html b/application/app/templates/registration/login.html index c0179b4..14dc819 100644 --- a/application/app/templates/registration/login.html +++ b/application/app/templates/registration/login.html @@ -71,12 +71,12 @@ {% if user_.first_name %} - {{ user_.first_name }} - {% if user_.last_name %} - {{ user_.last_name }} + {{ user_.last_name }}, {% endif %} + {{ user_.first_name }} + {% else %} {{ user_.username }} {% endif %}