Added spacing in base template

This commit is contained in:
Sverre Johansen
2009-11-11 00:03:43 +01:00
parent ecbd3d1b49
commit feb6afd526
+3 -3
View File
@@ -24,10 +24,10 @@
<div id="user-tools">
{% if user.is_authenticated %}
Welcome, <strong>{{user.username}}</strong>.
<a href="{% url django.contrib.auth.views.logout%}?next={{request.path}}">Log out</a>
<a href="{% url django.contrib.auth.views.logout %}?next={{request.path}}">Log out</a>
{% else %}
<a href="{% url django.contrib.auth.views.login %}?next={{request.path}}">Login</a> /
<a href="{% url registration_register%}">Register</a>
<a href="{% url django.contrib.auth.views.login %}?next={{request.path}}">Log in</a> /
<a href="{% url registration_register %}">Register</a>
{% endif %}
</div>
</div>