{% extends 'base.html.twig' %} {% block title %} {{ actor.name }} {% endblock %} {% block body %}
{% if actor.photo %} {{ actor.name }} {% else %} {{ actor.name }} {% endif %}

{{ actor.name }}


  • Age : {{ actor.birthday ? ('now'|date('Y') - actor.birthday|date('Y')) ~ ' ans' : 'Age inconnu'}}
  • Origine : {{ actor.origin }}
  • Taille : {{ actor.size ? (actor.size / 100) ~ ' m' : 'Taille inconnue' }}
  • Cheveux : {{ actor.colorHair }}
  • Tatouages : {{ actor.tattoo ? 'Oui' : 'Non' }}
  • Piercings : {{ actor.piercing ? 'Oui' : 'Non' }}
  • Position : {{ actor.role }}
  • Taille de la bite : {{ actor.dick ? actor.dick ~ ' cm' : 'Taille inconnue' }}
  • Circoncis : {{ actor.circumcised ? 'Oui' : 'Non' }}

Vidéos avec {{ actor.name }} - {{ allVideos|length }} vidéo{{ allVideos|length > 1 ? 's' : '' }}

{% for video in allVideos %}
Vidéo {{ video.name }}

{{ video.name}}

Acteurs : {% for actor in video.actors %} {{ actor.name }} {% if not loop.last %}

,

{% endif %} {% endfor %}
Tags : {% for tag in video.tags %}

{{ tag.name }}

{% if not loop.last %}

,

{% endif %} {% endfor %}
Sortie le :

{{ video.createdAt|format_datetime(locale='fr',pattern='d MMMM Y') }}

Durée :

{{ video.duration }}

{{ video.story|slice(0, 55) }}...

{% else %}

Aucune vidéo trouvée.

{% endfor %}
{% endblock %}