Make username clickable for consistency

This commit is contained in:
Roberto Rosario
2012-07-06 01:41:53 -04:00
parent 4439b9a6de
commit c2773615ce

View File

@@ -194,8 +194,7 @@
{% if not user.is_authenticated %}
{% trans "Anonymous" %}
{% else %}
{{ user.get_full_name|default:user }}
<a href="{% url current_user_details %}" title="{% trans 'User details' %}"><span class="famfam active famfam-vcard"></span></a>
<a href="{% url current_user_details %}" title="{% trans 'User details' %}">{{ user.get_full_name|default:user }}<span class="famfam active famfam-vcard"></span></a>
{% endif %}
</li>