Show More
@@ -1,45 +1,45 b'' | |||
|
1 | 1 | {% extends "boards/base.html" %} |
|
2 | 2 | |
|
3 | 3 | {% load i18n %} |
|
4 | 4 | {% load static %} |
|
5 | 5 | |
|
6 | 6 | {% block head %} |
|
7 | 7 | <title>{% trans "Authors" %}</title> |
|
8 | 8 | {% endblock %} |
|
9 | 9 | |
|
10 | 10 | {% block content %} |
|
11 | {% autoescape off %} | |
|
11 | 12 | <div id="posts-table"> |
|
12 | 13 | <p><img src="{% static 'favicon.png' %}" width="200" /></p> |
|
13 | 14 | {% if hosts %} |
|
14 | 15 | <p>{% trans "Available by addresses:" %} |
|
15 | {% autoescape off %} | |
|
16 | 16 |
|
|
17 | {% endautoescape %} | |
|
18 | 17 | </p> |
|
19 | 18 | {% endif %} |
|
20 | 19 | <h2>{% trans 'Statistics' %}</h2> |
|
21 | 20 | <p>{% trans 'Size of media:' %} {{ media_size|filesizeformat }}. |
|
22 | 21 | <p>{% blocktrans count count=post_count %}{{ count }} message{% plural %}messages{% endblocktrans %}.</p> |
|
23 | 22 | <p>{% trans 'Messages per day/week/month:' %} {{ post_per_day }}/{{ post_per_week }}/{{ post_per_month }}</p> |
|
24 | 23 | <p>{{ platform }}</p> |
|
25 | 24 | <p>Python {{ python }}</p> |
|
26 | 25 | <h2>{% trans 'Authors' %}</h2> |
|
27 | 26 | {% for nick, values in authors.items %} |
|
28 | 27 | <p> |
|
29 | 28 | <b>{{ nick }}</b> ({{ values.name }}): |
|
30 | 29 | {% for value in values.contacts %} |
|
31 | 30 | <a href="mailto:{{ value }}">{{ value }}</a> |
|
32 | 31 | {% endfor %} - |
|
33 | 32 | {{ values.roles|join:', ' }} |
|
34 | 33 | </p> |
|
35 | 34 | {% endfor %} |
|
36 | 35 | <br /> |
|
37 | 36 | <p>{% trans "Distributed under the" %} |
|
38 | 37 | <a href="http://www.gnu.org/licenses/gpl.html" >GNU GPLv3</a> |
|
39 | 38 | {% trans "license" %}</p> |
|
40 | 39 | <p><a href="https://bitbucket.org/neko259/neboard"> |
|
41 | 40 | {% trans "Repository" %}</a></p> |
|
42 | 41 | |
|
43 | 42 | <p>Bitcoin: <b>1A4dePg6CGfYcJ7SH1tbaVdjjj1VLv8X1H</b></p> |
|
44 | 43 | </div> |
|
44 | {% endautoescape %} | |
|
45 | 45 | {% endblock %} |
General Comments 0
You need to be logged in to leave comments.
Login now