X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/ae60b2a3949e96357477cc04f90fd0873cee8a92..dc95b1dff45fd576f0a21d461efe23bc16c3378b:/src/wolnelektury/templates/user.html?ds=inline diff --git a/src/wolnelektury/templates/user.html b/src/wolnelektury/templates/user.html index fa2f66035..36bb9783b 100644 --- a/src/wolnelektury/templates/user.html +++ b/src/wolnelektury/templates/user.html @@ -1,18 +1,24 @@ -{% 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 %}