X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/2f1c330e555c24deb17b7d6018b59c52dab7aafd..350fbc78517b633df190da93bf654825626f5997:/wolnelektury/templates/base.html?ds=inline

diff --git a/wolnelektury/templates/base.html b/wolnelektury/templates/base.html
index 8c8f1c68b..f481c9767 100644
--- a/wolnelektury/templates/base.html
+++ b/wolnelektury/templates/base.html
@@ -7,6 +7,7 @@
         <title>{% block title %}WolneLektury.pl{% endblock %}</title>
         <link rel="icon" href="/media/img/favicon.png" type="image/x-icon" />
         {% compressed_css "all" %}
+        {% compressed_js "jquery" %}
         {% compressed_js "all" %}
         {% block extrahead %}
         {% endblock %}
@@ -22,15 +23,15 @@
             <div id="user-info">
                 {% if user.is_authenticated %}
                     <p>
-                        Zalogowany jako <strong>{{ user.username }}</strong>
-                        | <a href="{% url user_shelves %}" id="user-shelves-link">Moje półki</a>
+                        Witaj, <strong>{{ user.username }}</strong>
+                        | <a href="{% url user_shelves %}" id="user-shelves-link">Twoje półki</a>
                         {% if user.is_staff %}
                         | <a href="/admin/">Administracja</a>
                         {% endif %}
                         | <a href="{% url logout %}?next={{ request.get_full_path }}">Wyloguj</a>
                     </p>
                 {% else %}
-                    <p><a href="{% url login %}" id="login-register-link">Zaloguj się / Załóż konto</a></p>
+                    <p><a href="{% url login %}" class="login-register-link">Zaloguj się / Załóż konto</a></p>
                 {% endif %}
             </div>
             <div class="clearboth"></div>