##// END OF EJS Templates
Added donation address
neko259 -
r650:dd314494 default
parent child Browse files
Show More
@@ -1,32 +1,34 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 {% if not forloop.last %}, {% endif %}
22 {% endfor %}
22 {% endfor %}
23 </p>
23 </p>
24 {% endfor %}
24 {% endfor %}
25 <br />
25 <br />
26 <p>{% trans "Distributed under the" %}
26 <p>{% trans "Distributed under the" %}
27 <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>
28 {% trans "license" %}</p>
28 {% trans "license" %}</p>
29 <p><a href="https://bitbucket.org/neko259/neboard">
29 <p><a href="https://bitbucket.org/neko259/neboard">
30 {% trans "Repository" %}</a></p>
30 {% trans "Repository" %}</a></p>
31
32 <p>Bitcoin: <b>1A4dePg6CGfYcJ7SH1tbaVdjjj1VLv8X1H</b></p>
31 </div>
33 </div>
32 {% endblock %}
34 {% endblock %}
General Comments 0
You need to be logged in to leave comments. Login now