##// END OF EJS Templates
Need to manually join lazy strings in authors now
neko259 -
r1990:9be6ed3d default
parent child Browse files
Show More
@@ -29,7 +29,9 b''
29 {% for value in values.contacts %}
29 {% for value in values.contacts %}
30 <a href="mailto:{{ value }}">{{ value }}</a>
30 <a href="mailto:{{ value }}">{{ value }}</a>
31 {% endfor %} -
31 {% endfor %} -
32 {{ values.roles|join:', ' }}
32 {% for value in values.roles %}
33 {{ value }}{% if not forloop.last %}, {% endif %}
34 {% endfor %}
33 </p>
35 </p>
34 {% endfor %}
36 {% endfor %}
35 <br />
37 <br />
General Comments 0
You need to be logged in to leave comments. Login now