|
@@ -2,7 +2,13 @@
|
|
|
<h1 class="user-name">
|
|
|
{{ profile.username }}
|
|
|
{% if profile.full_title %}
|
|
|
- <small class="user-title">{{ profile.full_title }}</small>
|
|
|
+ <small class="user-title">
|
|
|
+ {% if profile.rank.is_tab %}
|
|
|
+ <a href="{% url 'misago:users_rank' rank_slug=profile.rank.slug %}">{{ profile.full_title }}</a>
|
|
|
+ {% else %}
|
|
|
+ {{ profile.full_title }}
|
|
|
+ {% endif %}
|
|
|
+ </small>
|
|
|
{% endif %}
|
|
|
</h1>
|
|
|
|