{% extends "layouts/app.twig" %} {% block sidebar %} {% if actor.metadata %} {% set metadata = actor.metadata|json_decode %}
{% if metadata.biography or metadata.birth_date or metadata.birth_place or metadata.nationality %}

Personal Information

{% if metadata.birth_date %}
Birth Date {{ metadata.birth_date }}
{% endif %} {% if metadata.birth_place %}
Birth Place {{ metadata.birth_place }}
{% endif %} {% if metadata.nationality %}
Nationality
{{ country_flag(metadata.nationality) | raw }} {{ metadata.nationality }}
{% endif %} {% if metadata.death_date %}
Death Date {{ metadata.death_date }}
{% endif %}
{% endif %} {% if metadata.gender or metadata.height or metadata.weight or metadata.hair_color or metadata.eye_color %}

Physical Attributes

{% if metadata.gender %}
Gender {{ metadata.gender }}
{% endif %} {% if metadata.height %}
Height {{ metadata.height }}
{% endif %} {% if metadata.weight %}
Weight {{ metadata.weight }}
{% endif %} {% if metadata.hair_color %}
Hair Color {{ metadata.hair_color }}
{% endif %} {% if metadata.eye_color %}
Eye Color {{ metadata.eye_color }}
{% endif %} {% if metadata.ethnicity %}
Ethnicity {{ metadata.ethnicity }}
{% endif %}
{% endif %} {% if metadata.measurements or metadata.cup_size or metadata.fake_tits or metadata.penis_length or metadata.circumcised %}

Adult Attributes

{% if metadata.measurements %}
Measurements {{ metadata.measurements }}
{% endif %} {% if metadata.cup_size %}
Cup Size {{ metadata.cup_size }}
{% endif %} {% if metadata.fake_tits %}
Fake Tits {{ metadata.fake_tits }}
{% endif %} {% if metadata.penis_length %}
Penis Length {{ metadata.penis_length }}
{% endif %} {% if metadata.circumcised %}
Circumcised {{ metadata.circumcised }}
{% endif %}
{% endif %} {% if metadata.career_length or metadata.scene_count %}

Career Information

{% if metadata.career_length %}
Career Length {{ metadata.career_length }}
{% endif %} {% if metadata.scene_count %}
Scene Count {{ metadata.scene_count }}
{% endif %} {% if metadata.adult_specific.debut_year %}
Debut Year {{ metadata.adult_specific.debut_year }}
{% endif %} {% if metadata.adult_specific.retirement_year %}
Retirement Year {{ metadata.adult_specific.retirement_year }}
{% endif %} {% if metadata.adult_specific.active is defined %}
Active {{ metadata.adult_specific.active ? 'Yes' : 'No' }}
{% endif %}
{% endif %} {% if metadata.tattoos or metadata.piercings %}

Body Modifications

{% if metadata.tattoos %}

Tattoos

{{ metadata.tattoos }}

{% endif %} {% if metadata.piercings %}

Piercings

{{ metadata.piercings }}

{% endif %}
{% endif %}
{% endif %} {% endblock %} {% block content %}
{% if actor.thumbnail_path %} {{ actor.name }} {% else %}
{{ actor.name|first|upper }}
{% endif %}

{{ actor.name }}

{% if actor.movie_count > 0 %}
{{ actor.movie_count }} Movie{{ actor.movie_count != 1 ? 's' : '' }}
{% endif %} {% if actor.tv_show_count > 0 %}
{{ actor.tv_show_count }} TV Show{{ actor.tv_show_count != 1 ? 's' : '' }}
{% endif %} {% if actor.adult_video_count > 0 %}
{{ actor.adult_video_count }} Adult Video{{ actor.adult_video_count != 1 ? 's' : '' }}
{% endif %}
{% if actor.movie_count > 0 %}
{{ actor.movie_count }}
Movies
{% endif %} {% if actor.tv_show_count > 0 %}
{{ actor.tv_show_count }}
TV Shows
{% endif %} {% if actor.adult_video_count > 0 %}
{{ actor.adult_video_count }}
Adult Videos
{% endif %}
{% if movies %}

Movies ({{ movies|length }})

{% endif %} {% if tv_shows %}

TV Shows ({{ tv_shows|length }})

{% endif %} {% if scenes %}

Adult Videos ({{ scenes|length }})

{% endif %} {% if not movies and not tv_shows and not scenes %}

No Media Found

This performer hasn't appeared in any movies, TV shows, or adult videos yet.

{% endif %}
{% endblock %}