{% if filters.genres or filters.directors or filters.sources or search %}
Active Filters
{% if search %}
Search: "{{ search }}"
{% endif %}
{% for genre in filters.genres %}
Genre: {{ genre }}
{% endfor %}
{% for director in filters.directors %}
Director: {{ director }}
{% endfor %}
{% for source in filters.sources %}
Source: {{ source }}
{% endfor %}
{% endif %}
Quick Stats
Total Videos{{ pagination.total_items }}
This Page{{ movies|length }}
{% if pagination.total_pages > 1 %}
Page{{ pagination.current_page }} of {{ pagination.total_pages }}
{% endif %}
{% endblock %}
{% block content %}
Adult Videos
{% if pagination.total_items > 0 %}
{{ pagination.total_items }} videos
{% if search %}
matching "{{ search }}"
{% endif %}
{% if filters.genres or filters.directors or filters.sources %}
{% if filters.genres %}
{{ filters.genres|join(', ') }}
{% endif %}
{% if filters.directors %}
{{ filters.directors|join(', ') }}
{% endif %}
{% if filters.sources %}
{{ filters.sources|join(', ') }}
{% endif %}
{% endif %}
{% endif %}
{% if error %}
{{ error }}
{% endif %}
Sorted by: {{ sort_options[sort] }}
{% if error %}
{{ error }}
{% endif %}
Sorted by: {{ sort_options[sort] }}
{% if movies is empty %}
{% if search or filters.genres or filters.directors or filters.sources %}
No adult videos found matching your criteria
{% else %}
No adult videos found
{% endif %}
{% if search or filters.genres or filters.directors or filters.sources %}
Try adjusting your search terms or filters.
{% else %}
Adult videos will appear here after syncing with XBVR or Stash sources.
{% endif %}
{% if search or filters.genres or filters.directors or filters.sources %}
Clear filters
{% endif %}