X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/357027375ff8867f42ca34bcbfb5a78b5b185fc3..187d054620e6e005bed835fbdcb34a0098ffe98e:/src/wolnelektury/templates/piston/authorize_token.html?ds=sidebyside

diff --git a/src/wolnelektury/templates/piston/authorize_token.html b/src/wolnelektury/templates/piston/authorize_token.html
index 87450a20c..03131c713 100755
--- a/src/wolnelektury/templates/piston/authorize_token.html
+++ b/src/wolnelektury/templates/piston/authorize_token.html
@@ -1,18 +1,20 @@
-{% extends "base.html" %}
+{% extends "base/base.html" %}
 {% load i18n %}
 
 {% block titleextra %}{% trans "Authorize access to Wolne Lektury" %}{% endblock %}
 
 {% block body %}
-    <h1>{% trans "Authorize access to Wolne Lektury" %}</h1>
+  <h1>{% trans "Authorize access to Wolne Lektury" %}</h1>
 
-	<div class="normal-text">
-    <p>{% blocktrans %}Confirm to authorize access to Wolne Lektury as user <strong>{{ user}}</strong>.{% endblocktrans %}</p>
+  <div class="normal-text">
+    <p>
+      {% blocktrans %}Confirm to authorize access to Wolne Lektury as user <strong>{{ user}}</strong>.{% endblocktrans %}
+    </p>
 
     <form action="{% url 'piston.authentication.oauth_user_auth' %}" method="POST">
-    {% csrf_token %}
+      {% csrf_token %}
       {{ form.as_p }}
-      <button type="submit">Confirm</button>
+      <button type="submit">{% trans "Confirm" %}</button>
     </form>
-    </div>
+  </div>
 {% endblock %}