Club prepared.
[wolnelektury.git] / src / wolnelektury / templates / user.html
1 {% extends "base/base.html" %}
2 {% load i18n %}
3
4
5 {% block titleextra %}{% trans "User" %}{% endblock %}
6
7 {% block body %}
8   <div class="normal-text white-box">
9     <h1>{% trans "User" %}</h1>
10
11     <p><a href="{% url 'account_set_password' %}">{% trans "Password" %}</a></p>
12     <p><a href="{% url 'account_email' %}">{% trans "E-mail" %}</a></p>
13     <p><a href="{% url 'socialaccount_connections' %}">{% trans "Social accounts" %}</a></p>
14     {% if request.user.membership %}
15       <p><a href="{% url 'club_join' %}">Należysz do Towarzystwa Przyjaciół Wolnych Lektur</a></p> 
16     {% endif %}
17   </div>
18 {% endblock %}