{% if 'profile_list.list_by_station' in app.request.get('_route') and 'profile_list.list_by_stations' != app.request.get('_route') %}
{% set station = app.request.attributes.get('station') %}
<h2>Отзывы: проститутки {{ station.name }}</h2>
<ul>
{% for comment in station_comments(station, 5) %} {# station_comments(station, count) #}
<li>
<a href="{{ path('profile_preview.page', {'city': comment.profile.city.uriIdentity, 'profile': comment.profile.uriIdentity}) }}">
{% set photo = comment.profile|avatar %}
{% if photo is not null %}
<img width="100" src="{{ responsive_asset(photo.path, photo.type == 'photo' ? 'profile_media' : 'profile_media_avatar', '357x500', 'jpg') }}" alt="">
{% endif %}
{{ comment.profile.name }}
</a>
{{ comment.user ? comment.user.nickName : 'Аноним' }}
{{ comment.createdAt|date('Y.m.d H:i:s') }}
{{ comment.text }}
</li>
{% endfor %}
</ul>
{% endif %}