{# TV Show Card Component Parameters: - tvshow: The TV show object with all properties - view_mode: 'grid', 'list', or 'covers' (optional, defaults to 'grid') - show_rating: Whether to show rating (optional, defaults to true) - show_seasons: Whether to show season count (optional, defaults to true) - show_episodes: Whether to show episode count (optional, defaults to true) - show_genres: Whether to show genre tags (optional, defaults to true) #} {% set view_mode = view_mode|default('grid') %} {% set show_rating = show_rating|default(true) %} {% set show_seasons = show_seasons|default(true) %} {% set show_episodes = show_episodes|default(true) %} {% set show_genres = show_genres|default(true) %} {% if view_mode == 'list' %}
{{ tvshow.first_air_date|date('Y') }}
{% endif %} {% if show_genres and tvshow.genre %}{{ tvshow.source_name }}
{% endif %}