From 9b17dc68cc47d0b903ea5f2e7267af83c000d437 Mon Sep 17 00:00:00 2001 From: Donald Buczek Date: Sun, 9 Feb 2025 15:02:36 +0100 Subject: [PATCH] contactlist: Use name_and_title Save vertical space by combining names and titles into one column. --- mpicms/templates/personal/list.html | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/mpicms/templates/personal/list.html b/mpicms/templates/personal/list.html index 9df0ad9..0cac3dd 100644 --- a/mpicms/templates/personal/list.html +++ b/mpicms/templates/personal/list.html @@ -89,9 +89,7 @@

{% trans 'Contact List' %}

- - - + @@ -103,9 +101,7 @@

{% trans 'Contact List' %}

{% for contact in object_list %} - - - + @@ -120,7 +116,7 @@

{% trans 'Contact List' %}

{% trans 'Title' %}{% trans 'First Name' %}{% trans 'Last Name' %}{% trans 'Name' %} {% trans 'Email' %} {% trans 'Phone' %} {% trans 'Room' %}
{{ contact.title }}{{ contact.first_name }}{{ contact.last_name }}{{ contact.name_and_title }} {{ contact.phone }} {{ contact.room | add_room_links }}