X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/3be2da7359a9e68a577aa28a6a9d2ff0d3e0d8e4..e7912e4d0c3129a9a8c4e880c8d25d526c1074dd:/src/api/templates/oauth/authorize_token.html diff --git a/src/api/templates/oauth/authorize_token.html b/src/api/templates/oauth/authorize_token.html index e54f70136..488183982 100644 --- a/src/api/templates/oauth/authorize_token.html +++ b/src/api/templates/oauth/authorize_token.html @@ -1,20 +1,26 @@ -{% extends "base/base.html" %} +{% extends "base_simple.html" %} {% load i18n %} -{% block titleextra %}{% trans "Authorize access to Wolne Lektury" %}{% endblock %} +{% block settings %} + {% load title %} + {% trans "Zezwól na dostÄp do Wolnych Lektur" as title %} + {% title title %} +{% endblock %} + +{% block titleextra %}{% trans "Zezwól na dostÄp do Wolnych Lektur" %}{% endblock %} {% block body %} - <h1>{% trans "Authorize access to Wolne Lektury" %}</h1> + <h1>{% trans "Zezwól na dostÄp do Wolnych Lektur" %}</h1> <div class="normal-text"> <p> - {% blocktrans %}Confirm to authorize access to Wolne Lektury as user <strong>{{ user}}</strong>.{% endblocktrans %} + {% blocktrans %}Potwierdź dostÄp do Wolnych Lektur jako użytkownik <strong>{{ user }}</strong>.{% endblocktrans %} </p> <form action="{% url 'oauth_user_auth' %}" method="POST"> {% csrf_token %} {{ form.as_p }} - <button type="submit">{% trans "Confirm" %}</button> + <button type="submit">{% trans "Potwierdź" %}</button> </form> </div> {% endblock %}