##// END OF EJS Templates
Added commas to authors role list
neko259 -
r530:5ee5e3ef default
parent child Browse files
Show More
@@ -1,31 +1,32 b''
1 1 {% extends "boards/base.html" %}
2 2
3 3 {% load i18n %}
4 4
5 5 {% block head %}
6 6 <title>{% trans "Authors" %}</title>
7 7 {% endblock %}
8 8
9 9 {% block content %}
10 10 <div class="post">
11 11 <p><img src="{{ STATIC_URL }}favicon.png" width="200" /></p>
12 12 <h2>{% trans 'Authors' %}</h2>
13 13 {% for nick, values in authors.items %}
14 14 <p>
15 15 <b>{{ nick }}</b> ({{ values.name }}):
16 16 {% for value in values.contacts %}
17 17 <a href="mailto:{{ value }}">{{ value }}</a>
18 18 {% endfor %} -
19 19 {% for role in values.roles %}
20 20 <span class="role">{% trans role %}</span>
21 {% if not forloop.last %}, {% endif %}
21 22 {% endfor %}
22 23 </p>
23 24 {% endfor %}
24 25 <br />
25 26 <p>{% trans "Distributed under the" %}
26 27 <a href="http://www.gnu.org/licenses/gpl.html" >GNU GPLv3</a>
27 28 {% trans "license" %}</p>
28 29 <p><a href="https://bitbucket.org/neko259/neboard">
29 30 {% trans "Repository" %}</a></p>
30 31 </div>
31 {% endblock %} No newline at end of file
32 {% endblock %}
General Comments 0
You need to be logged in to leave comments. Login now