summaryrefslogtreecommitdiffstats
path: root/askbot/templates/user_profile/user_network.html
diff options
context:
space:
mode:
Diffstat (limited to 'askbot/templates/user_profile/user_network.html')
-rw-r--r--askbot/templates/user_profile/user_network.html16
1 files changed, 2 insertions, 14 deletions
diff --git a/askbot/templates/user_profile/user_network.html b/askbot/templates/user_profile/user_network.html
index ce13d5c4..c4006392 100644
--- a/askbot/templates/user_profile/user_network.html
+++ b/askbot/templates/user_profile/user_network.html
@@ -8,23 +8,11 @@
{% if followed_users or followers %}
{% if followers %}
<h2>{% trans count=followers|length %}Followed by {{count}} person{% pluralize count %}Followed by {{count}} people{% endtrans %}</h2>
- {{
- macros.user_list(
- followers,
- karma_mode = settings.KARMA_MODE,
- badges_mode = settings.BADGES_MODE
- )
- }}
+ {{ macros.user_list(followers) }}
{% endif %}
{% if followed_users %}
<h2>{% trans count=followed_users|length %}Following {{count}} person{% pluralize count %}Following {{count}} people{% endtrans %}</h2>
- {{
- macros.user_list(
- followed_users,
- karma_mode = settings.KARMA_MODE,
- badges_mode = settings.BADGES_MODE
- )
- }}
+ {{ macros.user_list(followed_users) }}
{% endif %}
{% else %}
{% if request.user == view_user %}