##// END OF EJS Templates
Chrome image popups fix
Chrome image popups fix

File last commit:

r1421:b362e5ab default
r1485:87524e39 default
Show More
authors.html
34 lines | 1.2 KiB | text/html | HtmlLexer
{% extends "boards/base.html" %}
{% load i18n %}
{% block head %}
<title>{% trans "Authors" %}</title>
{% endblock %}
{% block content %}
<div class="post">
<p><img src="{{ STATIC_URL }}favicon.png" width="200" /></p>
<h2>{% trans 'Statistics' %}</h2>
<p>{% trans 'Size of media:' %} {{ media_size|filesizeformat }}.
<p>{% blocktrans count count=post_count %}{{ count }} message{% plural %}messages{% endblocktrans %}.</p>
<h2>{% trans 'Authors' %}</h2>
{% for nick, values in authors.items %}
<p>
<b>{{ nick }}</b> ({{ values.name }}):
{% for value in values.contacts %}
<a href="mailto:{{ value }}">{{ value }}</a>
{% endfor %} -
{{ values.roles|join:', ' }}
</p>
{% endfor %}
<br />
<p>{% trans "Distributed under the" %}
<a href="http://www.gnu.org/licenses/gpl.html" >GNU GPLv3</a>
{% trans "license" %}</p>
<p><a href="https://bitbucket.org/neko259/neboard">
{% trans "Repository" %}</a></p>
<p>Bitcoin: <b>1A4dePg6CGfYcJ7SH1tbaVdjjj1VLv8X1H</b></p>
</div>
{% endblock %}