{% extends 'base.html.twig' %} {% trans_default_domain "community" %} {% block title %} {{ 'header.followed_communities'|trans({}, 'UserBundle') }} {% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block body %}

{{ 'community.all'|trans }}

{{ 'community.request'|trans }}

{% for community in followRequest %}
{% include 'community/community.html.twig' with {'community':community, 'request':true, 'follow':false, 'lastOne': loop.index == followRequest|length} %}
{% endfor %} {% if followRequest|length == 0 %}

{{ 'error.result.notfound'|trans }}

{% endif %}
{% endblock %} {% block javascripts %} {{ parent() }} {% if not userman.has_subscribtion() %} {% endif %} {% endblock %}