From facf64454e575aaab1fb04e6e137a806b554cc47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Thu, 17 Aug 2017 10:14:55 +0200 Subject: [PATCH] templates: do not include "None" as author for anonymous formdata (#18025) --- wcs/templates/wcs/formdata_history.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wcs/templates/wcs/formdata_history.html b/wcs/templates/wcs/formdata_history.html index e85f4d3e..79e33851 100644 --- a/wcs/templates/wcs/formdata_history.html +++ b/wcs/templates/wcs/formdata_history.html @@ -15,7 +15,7 @@ {% endif %}
{% if evolution.who %} - {{evolution.get_author_name}} + {{evolution.get_author_name|default_if_none:""}} {% if evolution.get_author_qualification %}({{evolution.get_author_qualification}}){% endif %} {% endif %} -- 2.14.1