{% extends "user_profile/user.html" %} {% import "macros.html" as macros %} {% block profilesection %} {% trans %}network{% endtrans %} {% endblock %} {% block usercontent %} {% if followed_users or followers %} {% if followers %}

{% trans count=followers|length %}Followed by {{count}} person{% pluralize count %}Followed by {{count}} people{% endtrans %}

{{ macros.users_list(followers) }} {% endif %} {% if followed_users %}

{% trans count=followed_users|length %}Following {{count}} person{% pluralize count %}Following {{count}} people{% endtrans %}

{{ macros.users_list(followed_users) }} {% endif %} {% else %}
{% if request.user.pk == view_user.pk %}

{% trans %}Your network is empty. Would you like to follow someone? - Just visit their profiles and click "follow"{% endtrans %}.

{% else %}

{% trans username = view_user.username|escape %}{{username}}'s network is empty{% endtrans %}.

{% endif %}
{% endif %} {% endblock %}