# HG changeset patch # User neko259 # Date 2017-12-03 19:44:43 # Node ID 9be6ed3d4f2b8b3b82ab957b5f6000f1fd3e4327 # Parent f63de1e2dddeb4656203685f404ab5f565274756 Need to manually join lazy strings in authors now diff --git a/boards/templates/boards/authors.html b/boards/templates/boards/authors.html --- a/boards/templates/boards/authors.html +++ b/boards/templates/boards/authors.html @@ -29,7 +29,9 @@ {% for value in values.contacts %} {{ value }} {% endfor %} - - {{ values.roles|join:', ' }} + {% for value in values.roles %} + {{ value }}{% if not forloop.last %}, {% endif %} + {% endfor %}

{% endfor %}