<style type="text/css">
.debug-table td, .debug-table tr {
border: 1px dashed #0B7FC7;
}
</style>
<table style="border:1px dashed #0B7FC7; font-size: small; width:100%;" class="debug-table">
<tr>
<td>id</td>
<td>url</td>
<td>nat</td>
<td>hai</td>
<td>age</td>
<td>bod</td>
<td>hgt</td>
<td>pri</td>
<td>bre</td>
<td>met.1</td>
<td>met.2_3</td>
<td>exp</td>
<td>sel</td>
<td>vid</td>
<td>rev</td>
<td>ver</td>
</tr>
{% for profile in profile_debug_data %}
<tr>
<td>{{ profile.id }}</td>
<td>
<a href="{{ path('profile_preview.page', {city: profile.city.uriIdentity, profile:profile.uriIdentity }) }}">{{ profile.name }}</a>
</td>
<td>{{ profile.personParameters.nationality|nationality }}</td>
<td>{{ profile.personParameters.hairColor|hair_color }}</td>
<td>{{ profile.personParameters.age }}</td>
<td>{{ profile.personParameters.bodyType|body_type }}</td>
<td>{{ profile.personParameters.height }}</td>
<td>{{ profile.apartmentsPricing.oneHourPrice }}</td>
<td>{{ profile.personParameters.breastSize }}</td>
<td>{{ profile.primaryStation ? profile.primaryStation.name : '' }}</td>
<td>
{% for station in profile.stationsSortedByPrimary %}
{% if not loop.first %}
{{ station.name }}{% if not loop.last %}, {% endif %}
{% endif %}
{% endfor %}
</td>
<td></td>
<td>{{ profile.expressPricing.provided }}</td>
<td>{{ profile.selfie }}</td>
<td>{{ profile.video }}</td>
<td>{{ profile.commented }}</td>
<td>{{ profile.approved }}</td>
</tr>
{% endfor %}
</table>