{% extends 'base.html.twig' %} {% trans_default_domain "Social" %} {% block title %} {{ 'social.following_list'|trans }} - {{ profileUser.firstName ~ ' ' ~ profileUser.lastName }} {% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block body %}
{# Followers / Following Tabs #} {# User List #} {% if following|length > 0 %} {% for user in following %}
{{ user.firstName }}

{{ user.firstName ~ ' ' ~ user.lastName }}

{% if user.bio %}

{{ user.bio|slice(0, 100) }}

{% endif %} {% if user.studyField %}
{{ user.studyField }}
{% endif %}
{% if currentUser and currentUser.id != user.id %} {% endif %}
{% endfor %} {# Pagination #} {% if totalPages > 1 %}
{% for p in 1..totalPages %} {{ p }} {% endfor %}
{% endif %} {% else %}

{{ 'social.not_following_anyone'|trans }}

{% endif %}
{% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}