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 {
  3.         border: 1px dashed #0B7FC7;
  4.     }
  5. </style>
  6. <table style="border:1px dashed #0B7FC7; font-size: small; width:100%;" class="debug-table">
  7.     <tr>
  8.         <td>id</td>
  9.         <td>url</td>
  10.         <td>nat</td>
  11.         <td>hai</td>
  12.         <td>age</td>
  13.         <td>bod</td>
  14.         <td>hgt</td>
  15.         <td>pri</td>
  16.         <td>bre</td>
  17.         <td>met.1</td>
  18.         <td>met.2_3</td>
  19.         <td>exp</td>
  20.         <td>sel</td>
  21.         <td>vid</td>
  22.         <td>rev</td>
  23.         <td>ver</td>
  24.     </tr>
  25.     {% for profile in profile_debug_data %}
  26.         <tr>
  27.             <td>{{ profile.id }}</td>
  28.             <td>
  29.                 <a href="{{ path('profile_preview.page', {city: profile.city.uriIdentity, profile:profile.uriIdentity }) }}">{{ profile.name }}</a>
  30.             </td>
  31.             <td>{{ profile.personParameters.nationality|nationality }}</td>
  32.             <td>{{ profile.personParameters.hairColor|hair_color }}</td>
  33.             <td>{{ profile.personParameters.age }}</td>
  34.             <td>{{ profile.personParameters.bodyType|body_type }}</td>
  35.             <td>{{ profile.personParameters.height }}</td>
  36.             <td>{{ profile.apartmentsPricing.oneHourPrice }}</td>
  37.             <td>{{ profile.personParameters.breastSize }}</td>
  38.             <td>{{ profile.primaryStation ? profile.primaryStation.name : '' }}</td>
  39.             <td>
  40.                 {% for station in profile.stationsSortedByPrimary %}
  41.                     {% if not loop.first %}
  42.                         {{ station.name }}{% if not loop.last %}, {% endif %}
  43.                     {% endif %}
  44.                 {% endfor %}
  45.             </td>
  46.             <td></td>
  47.             <td>{{ profile.expressPricing.provided }}</td>
  48.             <td>{{ profile.selfie }}</td>
  49.             <td>{{ profile.video }}</td>
  50.             <td>{{ profile.commented }}</td>
  51.             <td>{{ profile.approved }}</td>
  52.         </tr>
  53.     {% endfor %}
  54. </table>