Browse Source

Removed user titles from followed users list.

Ralfp 12 years ago
parent
commit
919555dfdd
2 changed files with 2 additions and 2 deletions
  1. 1 1
      templates/sora/profiles/followers.html
  2. 1 1
      templates/sora/profiles/follows.html

+ 1 - 1
templates/sora/profiles/followers.html

@@ -35,7 +35,7 @@
       {% for user in row %}
       {% for user in row %}
       <td class="span3">
       <td class="span3">
         {% if user %}
         {% if user %}
-        <a href="{% url 'user' username=user.username_slug, user=user.pk %}"><img src="{{ user.get_avatar(42) }}" class="avatar" alt=""> <strong>{{ user.username }}</strong>{% if user.title or (in_search and user.get_title()) %} <span class="muted">{% if in_search%}{{ _(user.get_title()) }}{% else %}{{ _(user.title) }}{% endif %}</span>{% endif %}</a>
+        <a href="{% url 'user' username=user.username_slug, user=user.pk %}"><img src="{{ user.get_avatar(42) }}" class="avatar" alt=""> <strong>{{ user.username }}</strong></a>
         {% else %}
         {% else %}
         &nbsp;
         &nbsp;
         {% endif %}
         {% endif %}

+ 1 - 1
templates/sora/profiles/follows.html

@@ -35,7 +35,7 @@
       {% for user in row %}
       {% for user in row %}
       <td class="span3">
       <td class="span3">
         {% if user %}
         {% if user %}
-        <a href="{% url 'user' username=user.username_slug, user=user.pk %}"><img src="{{ user.get_avatar(42) }}" class="avatar" alt=""> <strong>{{ user.username }}</strong>{% if user.title or (in_search and user.get_title()) %} <span class="muted">{% if in_search%}{{ _(user.get_title()) }}{% else %}{{ _(user.title) }}{% endif %}</span>{% endif %}</a>
+        <a href="{% url 'user' username=user.username_slug, user=user.pk %}"><img src="{{ user.get_avatar(42) }}" class="avatar" alt=""> <strong>{{ user.username }}</strong></a>
         {% else %}
         {% else %}
         &nbsp;
         &nbsp;
         {% endif %}
         {% endif %}