709065174160abefce085be295ac1098e463a5f8
[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 "User" as title %}
8   {% title title %}
9 {% endblock %}
10
11 {% block titleextra %}{% trans "User" %}{% endblock %}
12
13 {% block body %}
14   <div class="normal-text white-box">
15     <h1>{% trans "User" %}</h1>
16
17     <p><a href="{% url 'account_set_password' %}">{% trans "Password" %}</a></p>
18     <p><a href="{% url 'account_email' %}">{% trans "E-mail" %}</a></p>
19     <p><a href="{% url 'socialaccount_connections' %}">{% trans "Social accounts" %}</a></p>
20     {% if request.user.membership %}
21       <p><a href="{% url 'club_join' %}">Wspierasz Wolne Lektury, dziÄ™kujemy!</a></p>
22     {% endif %}
23   </div>
24 {% endblock %}