Locatizations.
[wolnelektury.git] / src / wolnelektury / templates / user.html
1 {% extends "base_simple.html" %}
2 {% load i18n %}
3
4
5 {% block settings %}
6   {% load title %}
7   {% trans "Użytkownik" as title %}
8   {% title title %}
9 {% endblock %}
10
11 {% block titleextra %}{% trans "Użytkownik" %}{% endblock %}
12
13 {% block body %}
14   <div class="normal-text white-box">
15     <h1>{% trans "Użytkownik" %}</h1>
16
17     <p><a href="{% url 'account_set_password' %}">{% trans "Hasło" %}</a></p>
18     <p><a href="{% url 'account_email' %}">{% trans "E-mail" %}</a></p>
19     <p><a href="{% url 'socialaccount_connections' %}">{% trans "Zewnętrzne konta" %}</a></p>
20     {% if request.user.membership %}
21       <p><a href="{% url 'club_join' %}">{% trans "Wspierasz Wolne Lektury, dziękujemy!" %}</a></p>
22     {% endif %}
23   </div>
24 {% endblock %}