{% extends 'admin/layout.twig' %} {% block title %}Manage Actors - Admin Panel - MediaLib{% endblock %} {% block content %}

Manage Actors

View and manage actors, find and merge duplicates

All Actors Duplicates
{% if flash.success %}
{{ flash.success }}
{% endif %} {% if filters.duplicates %}
Duplicate Actor Groups
Actors with similar names that may need to be merged
{% for group in actors %}
{{ group.normalized_name|title }}
{{ group.duplicate_count }} duplicates
{% for actor in group.actors %}
{% if actor.thumbnail_path %} {{ actor.name }} {% else %}
{% endif %}
{{ actor.name }}
{{ actor.stats.movie_count }} movies, {{ actor.stats.tv_show_count }} TV shows, {{ actor.stats.adult_video_count }} adult videos ({{ actor.stats.total_media_count }} total)
ID: {{ actor.id }} {% if actor.thumbnail_path %} {% endif %}
{% endfor %}
{% else %}
No Duplicate Actors Found

All actors in your database appear to be unique.

{% endfor %}
{% if pagination.total > 1 %} {% endif %} {% else %}
Showing {{ pagination.from }} to {{ pagination.to }} of {{ pagination.total_items }} actors
{% for actor in actors %} {% else %} {% endfor %}
Photo Name Movies TV Shows Adult Videos Total Media Actions
{% if actor.thumbnail_path %} {{ actor.name }} {% else %}
{% endif %}
{{ actor.name }} {{ actor.movies|length }} {{ actor.tvShows|length }} {{ actor.adultVideos|length }} {{ actor.movies|length + actor.tvShows|length + actor.adultVideos|length }}
No actors found.
{% if pagination.total > 1 %} {% endif %} {% endif %}
{% endblock %} {% block scripts %} {% endblock %}