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

{{ follower.firstName ~ ' ' ~ follower.lastName }}

{% if follower.bio %}

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

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

{{ 'social.no_followers_yet'|trans }}

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