{# 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' %}
  • {% if tvshow.poster_url %} {{ tvshow.title }} {% else %}
    {% endif %}

    {{ tvshow.title }}

    {% if tvshow.first_air_date %} {{ tvshow.first_air_date|date('Y') }} {% endif %} {% if show_rating and tvshow.rating %} ⭐ {{ tvshow.rating }}/10 {% endif %} {% if show_seasons and tvshow.number_of_seasons %} {{ tvshow.number_of_seasons }} season{{ tvshow.number_of_seasons > 1 ? 's' : '' }} {% endif %} {% if show_episodes and tvshow.number_of_episodes %} {{ tvshow.number_of_episodes }} episode{{ tvshow.number_of_episodes > 1 ? 's' : '' }} {% endif %} {{ tvshow.source_name }}
    {% if tvshow.is_favorite %} Favorite {% endif %}
  • {% elseif view_mode == 'covers' %}
    {% if tvshow.poster_url %}
    {{ tvshow.title }}
    {% if show_rating and tvshow.rating %}
    {{ tvshow.rating }}
    {% endif %} {% if show_seasons and tvshow.number_of_seasons %}
    {{ tvshow.number_of_seasons }} season{{ tvshow.number_of_seasons > 1 ? 's' : '' }}
    {% endif %}
    {% else %}
    {% endif %}
    {{ tvshow.title }}
    {% if tvshow.first_air_date %}

    {{ tvshow.first_air_date|date('Y') }}

    {% endif %} {% if show_genres and tvshow.genre %}
    {% for genre in tvshow.genre|split(',')|slice(0, 2) %} {{ genre|trim }} {% endfor %}
    {% endif %}
    {% else %}
    {% if tvshow.poster_url %} {{ tvshow.title }} {% else %}
    {% endif %}
    {{ tvshow.title }}
    {% if tvshow.first_air_date %} {{ tvshow.first_air_date|date('Y') }} {% endif %} {% if show_rating and tvshow.rating %} ⭐ {{ tvshow.rating }}/10 {% endif %}
    {% if tvshow.source_name %}

    {{ tvshow.source_name }}

    {% endif %}
    {% if tvshow.overview %}

    {{ tvshow.overview|slice(0, 150) }}{% if tvshow.overview|length > 150 %}...{% endif %}

    {% endif %}
    {% if show_seasons and tvshow.number_of_seasons %} {{ tvshow.number_of_seasons }} season{{ tvshow.number_of_seasons > 1 ? 's' : '' }} {% endif %} {% if show_episodes and tvshow.number_of_episodes %} {{ tvshow.number_of_episodes }} episode{{ tvshow.number_of_episodes > 1 ? 's' : '' }} {% endif %}
    {% if tvshow.is_favorite %} Favorite {% endif %}
    {% endif %}