Make the entire username and not just the icon clickable

This commit is contained in:
Roberto Rosario
2015-01-06 18:28:14 -04:00
parent 695dad264a
commit fbb6dccd98

View File

@@ -166,12 +166,11 @@
</div>
<div id="user-navigation">
<ul class="wat-cf">
<li><strong>{% trans 'User' %}:</strong>
<li><strong>{% trans 'User' %}: </strong>
{% if not user.is_authenticated %}
{% trans 'Anonymous' %}
{% else %}
{{ user.get_full_name|default:user }}
<a href="{% url 'common:current_user_details' %}" title="{% trans 'User details' %}"><span class="famfam active famfam-vcard"></span></a>
<a href="{% url 'common:current_user_details' %}" title="{% trans 'User details' %}">{{ user.get_full_name|default:user }} <span class="famfam active famfam-vcard"></span></a>
{% endif %}
</li>