-{% extends "base.html" %}
+{% extends "base_simple.html" %}
{% load i18n %}
-{% block titleextra %}{% trans "User" %}{% endblock %}
-
-{% block body %}
-
-<div class="normal-text white-box">
+{% block settings %}
+ {% load title %}
+ {% trans "Użytkownik" as title %}
+ {% title title %}
+{% endblock %}
-<h1>{% trans "User" %}</h1>
+{% block titleextra %}{% trans "Użytkownik" %}{% endblock %}
-<p><a href="{% url 'account_set_password' %}">{% trans "Password" %}</a></p>
-<p><a href="{% url 'account_email' %}">{% trans "E-mail" %}</a></p>
-<p><a href="{% url 'socialaccount_connections' %}">{% trans "Social accounts" %}</a></p>
-</div>
+{% block body %}
+ <div class="normal-text white-box">
+ <h1>{% trans "Użytkownik" %}</h1>
+ <p><a href="{% url 'account_set_password' %}">{% trans "Hasło" %}</a></p>
+ <p><a href="{% url 'account_email' %}">{% trans "E-mail" %}</a></p>
+ <p><a href="{% url 'socialaccount_connections' %}">{% trans "Zewnętrzne konta" %}</a></p>
+ {% if request.user.membership %}
+ <p><a href="{% url 'club_join' %}">{% trans "Wspierasz Wolne Lektury, dziękujemy!" %}</a></p>
+ {% endif %}
+ </div>
{% endblock %}