##// 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 {% extends "boards/base.html" %}
1 {% extends "boards/base.html" %}
2
2
3 {% load i18n %}
3 {% load i18n %}
4
4
5 {% block head %}
5 {% block head %}
6 <title>{% trans "Authors" %}</title>
6 <title>{% trans "Authors" %}</title>
7 {% endblock %}
7 {% endblock %}
8
8
9 {% block content %}
9 {% block content %}
10 <div class="post">
10 <div class="post">
11 <p><img src="{{ STATIC_URL }}favicon.png" width="200" /></p>
11 <p><img src="{{ STATIC_URL }}favicon.png" width="200" /></p>
12 <h2>{% trans 'Authors' %}</h2>
12 <h2>{% trans 'Authors' %}</h2>
13 {% for nick, values in authors.items %}
13 {% for nick, values in authors.items %}
14 <p>
14 <p>
15 <b>{{ nick }}</b> ({{ values.name }}):
15 <b>{{ nick }}</b> ({{ values.name }}):
16 {% for value in values.contacts %}
16 {% for value in values.contacts %}
17 <a href="mailto:{{ value }}">{{ value }}</a>
17 <a href="mailto:{{ value }}">{{ value }}</a>
18 {% endfor %} -
18 {% endfor %} -
19 {% for role in values.roles %}
19 {% for role in values.roles %}
20 <span class="role">{% trans role %}</span>
20 <span class="role">{% trans role %}</span>
21 {% if not forloop.last %}, {% endif %}
21 {% endfor %}
22 {% endfor %}
22 </p>
23 </p>
23 {% endfor %}
24 {% endfor %}
24 <br />
25 <br />
25 <p>{% trans "Distributed under the" %}
26 <p>{% trans "Distributed under the" %}
26 <a href="http://www.gnu.org/licenses/gpl.html" >GNU GPLv3</a>
27 <a href="http://www.gnu.org/licenses/gpl.html" >GNU GPLv3</a>
27 {% trans "license" %}</p>
28 {% trans "license" %}</p>
28 <p><a href="https://bitbucket.org/neko259/neboard">
29 <p><a href="https://bitbucket.org/neko259/neboard">
29 {% trans "Repository" %}</a></p>
30 {% trans "Repository" %}</a></p>
30 </div>
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