fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Removed buggy html2wl XSLT - replaced with a Javascript HTML serializer.
[redakcja.git]
/
platforma
/
templates
/
registration
/
head_login.html
diff --git
a/platforma/templates/registration/head_login.html
b/platforma/templates/registration/head_login.html
index
5eb353d
..
ee20ef2
100644
(file)
--- a/
platforma/templates/registration/head_login.html
+++ b/
platforma/templates/registration/head_login.html
@@
-1,10
+1,11
@@
+{% load i18n %}
+
{% if user.is_authenticated %}
<span class="user_name">{{ user.username }}</span> |
{% if user.is_authenticated %}
<span class="user_name">{{ user.username }}</span> |
-<a href='{% url logout %}
?next={{request.get_full_path}}'>Wyloguj
</a>
+<a href='{% url logout %}
'>{% trans "Log Out" %}
</a>
{% else %}
{% url login as login_url %}
{% ifnotequal login_url request.path %}
{% else %}
{% url login as login_url %}
{% ifnotequal login_url request.path %}
- <a href='{{ login_url }}
?next={{request.get_full_path}}'>Logowanie
</a>
+ <a href='{{ login_url }}
'>{% trans "Log In" %}
</a>
{% endifnotequal %}
{% endifnotequal %}
-
{% endif %}
{% endif %}