Projet

Général

Profil

0001-templates-do-not-include-None-as-author-for-anonymou.patch

Frédéric Péters, 17 août 2017 10:15

Télécharger (1010 octets)

Voir les différences:

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(-)
wcs/templates/wcs/formdata_history.html
15 15
       {% endif %}
16 16
       <div class="msg">
17 17
         {% if evolution.who %}
18
         <span class="user">{{evolution.get_author_name}}
18
         <span class="user">{{evolution.get_author_name|default_if_none:""}}
19 19
                 <span>{% if evolution.get_author_qualification %}({{evolution.get_author_qualification}}){% endif %}</span>
20 20
         </span>
21 21
         {% endif %}
22
-