{# Adult Video Card Component Parameters: - movie: The adult video object with all properties (uses 'movie' variable name from controller) - view_mode: 'grid', 'list', or 'covers' (optional, defaults to 'grid') - show_rating: Whether to show rating (optional, defaults to true) - show_runtime: Whether to show runtime (optional, defaults to true) - show_genres: Whether to show genre tags (optional, defaults to true) - show_watched: Whether to show watched status (optional, defaults to true) #} {% set view_mode = view_mode|default('grid') %} {% set show_rating = show_rating|default(true) %} {% set show_runtime = show_runtime|default(true) %} {% set show_genres = show_genres|default(true) %} {% set show_watched = show_watched|default(true) %} {% if view_mode == 'list' %}
{{ movie.release_date|date('Y') }}
{% endif %} {% if show_genres and movie.genre %}{{ movie.source_name }}
{% endif %}