From ca0387ee927ec8dd3b8a15a6aca28f091c9316e8 Mon Sep 17 00:00:00 2001 From: Donald Buczek Date: Thu, 5 Aug 2021 15:35:20 +0200 Subject: [PATCH] publications: Change list field order Change order of fields in publications list to - authors - title - source - groups --- mpicms/templates/publications/components/list.html | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/mpicms/templates/publications/components/list.html b/mpicms/templates/publications/components/list.html index b68acb8..5ec4dd8 100644 --- a/mpicms/templates/publications/components/list.html +++ b/mpicms/templates/publications/components/list.html @@ -7,15 +7,14 @@

{% trans 'Publications' %}

{% for publication in publications %} + {{ publication.authors|richtext }} {% if publication.doi %} {{ publication.title|richtext }} {% else %} {{ publication.title|richtext }} {% endif %} - - {{ publication.groups|richtext }} - {{ publication.authors|richtext }} {{ publication.source|richtext }} + {{ publication.groups|richtext }} {% endfor %} @@ -24,4 +23,4 @@

{% trans 'Publications' %}

-{% endif %} \ No newline at end of file +{% endif %}