templates/Recommendations/_profile_recommendations_debug_profile_data_table.html.twig line 1

Open in your IDE?
  1. <style type="text/css">
  2. .debug-table td, .debug-table tr { border: 1px dashed #0B7FC7; }
  3. </style>
  4. <table style="border:1px dashed #0B7FC7; font-size: small; width:100%;" class="debug-table">
  5.     <tr>
  6.         <td>id</td><td>url</td>
  7.         <td>nat</td><td>hai</td><td>age</td><td>bod</td><td>hgt</td><td>pri</td><td>bre</td>
  8.         <td>met.1</td><td>met.2_3</td>
  9.         <td>exp</td><td>sel</td><td>vid</td><td>rev</td><td>ver</td>
  10.     </tr>
  11.     {% for profile in profile_debug_data %}
  12.         <tr>
  13.             <td>{{ profile.id }}</td>
  14.             <td><a href="{{ path('profile_preview.page', {city: profile.city.uriIdentity, profile:profile.uriIdentity }) }}">{{ profile.name }}</a></td>
  15.             <td>{{ profile.personParameters.nationality|nationality }}</td><td>{{ profile.personParameters.hairColor|hair_color }}</td>
  16.             <td>{{ profile.personParameters.age }}</td><td>{{ profile.personParameters.bodyType|body_type }}</td>
  17.             <td>{{ profile.personParameters.height }}</td><td>{{ profile.apartmentsPricing.oneHourPrice }}</td>
  18.             <td>{{ profile.personParameters.breastSize }}</td>
  19.             <td>{{ profile.stations.count > 0 ? profile.stations[0].name }}</td>
  20.             <td>{{ profile.stations.count > 1 ? profile.stations[1].name }}{{ profile.stations.count > 2 ? ',' ~ profile.stations[2].name }}</td>
  21.             <td></td>
  22.             <td>{{ profile.expressPricing.provided }}</td><td>{{ profile.selfie }}</td>
  23.             <td>{{ profile.video }}</td><td>{{ profile.commented }}</td><td>{{ profile.approved }}</td>
  24.         </tr>
  25.     {% endfor %}
  26. </table>