templates/ProfilePreview/nearest_profiles.html.twig line 1

Open in your IDE?
  1. <div>
  2.     <h2>Другие проститутки рядом</h2>
  3.     {% for profile in nearest_profiles %}
  4.         <div>
  5.             {{ profile.id }} <a href="{{ path('profile_preview.page', {city: profile.city.uriIdentity, profile: profile.uriIdentity}) }}">{{ profile.name|trans }}</a>
  6.         </div>
  7.     {% endfor %}
  8. </div>