workaround for django ticket 17111; cover in api fix
[wolnelektury.git] / wolnelektury / templates / piston / authorize_token.html
1 {% extends "base.html" %}
2 {% load i18n %}
3
4 {% block titleextra %}{% trans "Authorize access to Wolne Lektury" %}{% endblock %}
5
6 {% block body %}
7     <h1>{% trans "Authorize access to Wolne Lektury" %}</h1>
8
9         <div class="normal-text">
10     <p>{% blocktrans %}Confirm to authorize access to Wolne Lektury as user <strong>{{ user}}</strong>.{% endblocktrans %}</p>
11
12     <form action="{% url piston.authentication.oauth_user_auth %}" method="POST">
13       {{ form.as_p }}
14       <button type="submit">Confirm</button>
15     </form>
16     </div>
17 {% endblock %}