impoort stuff!

This commit is contained in:
Lars Behrends
2025-10-24 16:04:34 +02:00
parent 73d8441787
commit 218d0c28c0
17 changed files with 3043 additions and 277 deletions

View File

@@ -1,30 +1,381 @@
{% extends "layouts/app.twig" %}
{% block content %}
<div class="px-4 py-6 sm:px-0">
<div class="container-fluid px-4 py-3">
<!-- Back button -->
<div class="mb-6">
<a href="{{ path_for('tvshows.index') }}" class="inline-flex items-center text-sm text-indigo-600 hover:text-indigo-800">
<svg class="w-4 h-4 mr-2" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<div class="mb-4">
<a href="{{ path_for('tvshows.index') }}" class="btn btn-link text-decoration-none p-0">
<svg class="me-2" width="16" height="16" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 19l-7-7 7-7"/>
</svg>
Back to TV Shows
</a>
</div>
<!-- Coming Soon Message -->
<div class="text-center py-12">
<svg class="mx-auto h-12 w-12 text-gray-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 10l4.553-2.276A1 1 0 0121 8.618v6.764a1 1 0 01-1.447.894L15 14M5 18h8a2 2 0 002-2V8a2 2 0 00-2-2H5a2 2 0 00-2 2v8a2 2 0 002 2z"/>
</svg>
<h3 class="mt-2 text-sm font-medium text-gray-900">TV Show Details Coming Soon</h3>
<p class="mt-1 text-sm text-gray-500">{{ message }}</p>
<div class="mt-6">
<div class="inline-flex items-center px-4 py-2 border border-gray-300 rounded-md text-sm font-medium text-gray-700 bg-white">
<svg class="w-4 h-4 mr-2" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 10l4.553-2.276A1 1 0 0121 8.618v6.764a1 1 0 01-1.447.894L15 14M5 18h8a2 2 0 002-2V8a2 2 0 00-2-2H5a2 2 0 00-2 2v8a2 2 0 002 2z"/>
</svg>
TV Show ID: {{ tvshow.id }}
<div class="card shadow-sm">
<div class="row g-0">
<!-- TV Show poster -->
<div class="col-md-4">
<div class="card-body p-4">
<div class="ratio ratio-2x3">
{% if tvshow.poster_url %}
<img src="/images/{{ tvshow.poster_url }}" alt="{{ tvshow.title }}" class="img-fluid rounded">
{% else %}
<div class="w-100 h-100 d-flex align-items-center justify-content-center bg-light rounded">
<svg class="text-muted" width="96" height="96" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 10l4.553-2.276A1 1 0 0121 8.618v6.764a1 1 0 01-1.447.894L15 14M5 18h8a2 2 0 002-2V8a2 2 0 00-2-2H5a2 2 0 00-2 2v8a2 2 0 002 2z"/>
</svg>
</div>
{% endif %}
</div>
<!-- Action buttons -->
<div class="mt-4 d-grid gap-2">
<button class="btn btn-primary">
<svg class="me-2" width="16" height="16" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14.828 14.828a4 4 0 01-5.656 0M9 10h1m4 0h1m-6 8a9 9 0 110-18 9 9 0 010 18z"/>
</svg>
Mark as Watched
</button>
<button class="btn btn-outline-danger">
<svg class="me-2" width="16" height="16" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z"/>
</svg>
Add to Favorites
</button>
</div>
</div>
</div>
<!-- TV Show details -->
<div class="col-md-8">
<div class="card-body p-4">
<div class="mb-4">
<h1 class="display-4 fw-bold text-dark mb-2">{{ tvshow.title }}</h1>
{% if tvshow.tagline %}
<p class="lead text-muted mb-3">{{ tvshow.tagline }}</p>
{% endif %}
<!-- TV Show metadata -->
<div class="d-flex flex-wrap gap-3 small text-muted mb-3">
{% if tvshow.first_air_date %}
<span class="d-flex align-items-center">
<svg class="me-1" width="16" height="16" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"/>
</svg>
{{ tvshow.first_air_date|date('Y') }}
</span>
{% endif %}
{% if tvshow.last_air_date %}
<span class="d-flex align-items-center">
<svg class="me-1" width="16" height="16" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"/>
</svg>
Ended {{ tvshow.last_air_date|date('Y') }}
</span>
{% endif %}
{% if tvshow.vote_average %}
<span class="d-flex align-items-center">
<svg class="me-1" width="16" height="16" fill="currentColor" viewBox="0 0 20 20">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"/>
</svg>
{{ tvshow.vote_average }}/10
</span>
{% endif %}
{% if tvshow.number_of_seasons and tvshow.number_of_episodes %}
<span class="d-flex align-items-center">
<svg class="me-1" width="16" height="16" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 4V2a1 1 0 011-1h8a1 1 0 011 1v2h4a1 1 0 010 2h-1v14a2 2 0 01-2 2H6a2 2 0 01-2-2V6H3a1 1 0 010-2h4z"/>
</svg>
{{ tvshow.number_of_seasons }} season{{ tvshow.number_of_seasons > 1 ? 's' : '' }}, {{ tvshow.number_of_episodes }} episode{{ tvshow.number_of_episodes > 1 ? 's' : '' }}
</span>
{% endif %}
<span class="d-flex align-items-center">
<svg class="me-1" width="16" height="16" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0zm6 3a2 2 0 11-4 0 2 2 0 014 0zM7 10a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
{{ tvshow.source_name }}
</span>
</div>
<!-- Status badges -->
<div class="d-flex flex-wrap gap-2">
{% if tvshow.status == 'Ended' %}
<span class="badge bg-danger d-flex align-items-center">
<svg class="me-1" width="12" height="12" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-2.5L13.732 4c-.77-.833-1.964-.833-2.732 0L3.732 16.5c-.77.833.192 2.5 1.732 2.5z"/>
</svg>
Ended
</span>
{% elseif tvshow.status == 'Returning Series' %}
<span class="badge bg-success d-flex align-items-center">
<svg class="me-1" width="12" height="12" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z"/>
</svg>
Ongoing
</span>
{% endif %}
{% if tvshow.is_favorite %}
<span class="badge bg-warning text-dark d-flex align-items-center">
<svg class="me-1" width="12" height="12" fill="currentColor" viewBox="0 0 20 20">
<path d="M3.172 5.172a4 4 0 015.656 0L10 6.343l1.172-1.171a4 4 0 115.656 5.656L10 17.657l-6.828-6.829a4 4 0 010-5.656z"/>
</svg>
Favorite
</span>
{% endif %}
</div>
</div>
<!-- Overview -->
{% if tvshow.overview %}
<div class="mb-4">
<h2 class="h5 fw-semibold text-dark mb-2">Overview</h2>
<p class="text-muted">{{ tvshow.overview }}</p>
</div>
{% endif %}
<!-- Cast & Crew Section -->
<div class="mb-4">
<h2 class="h5 fw-semibold text-dark mb-3">Cast & Crew</h2>
<div class="row g-3">
{% if tvshow.created_by %}
<div class="col-md-6">
<div class="d-flex align-items-center">
<svg class="me-2 text-muted" width="20" height="20" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z"/>
</svg>
<div>
<small class="text-muted d-block">Created by</small>
<span class="fw-medium">{{ tvshow.created_by }}</span>
</div>
</div>
</div>
{% endif %}
</div>
{% if actors %}
<div class="mt-3">
<small class="text-muted d-block mb-2">Main Cast</small>
<div class="d-flex flex-wrap gap-2">
{% for actor in actors %}
<span class="badge bg-light text-dark">{{ actor.name }}</span>
{% endfor %}
</div>
</div>
{% endif %}
</div>
<!-- TV Show Details Grid -->
<div class="row g-4 mb-4">
<!-- Genres -->
{% if tvshow.genre %}
<div class="col-md-4">
<h3 class="h6 fw-semibold text-dark mb-3">Genres</h3>
<div class="d-flex flex-wrap gap-2">
{% for genre in tvshow.genre|split(',') %}
<span class="badge bg-primary">{{ genre|trim }}</span>
{% endfor %}
</div>
</div>
{% endif %}
<!-- Networks & Production -->
{% if tvshow.networks or tvshow.production_companies %}
<div class="col-md-4">
<h3 class="h6 fw-semibold text-dark mb-3">Production</h3>
<div class="mb-2">
{% if tvshow.networks %}
<small class="text-muted d-block">Networks</small>
<span class="fw-medium">{{ tvshow.networks }}</span>
{% endif %}
</div>
{% if tvshow.production_companies %}
<div class="mb-2">
<small class="text-muted d-block">Companies</small>
<span class="fw-medium">{{ tvshow.production_companies }}</span>
</div>
{% endif %}
</div>
{% endif %}
<!-- Episode Details -->
{% if tvshow.episode_run_time or tvshow.origin_country %}
<div class="col-md-4">
<h3 class="h6 fw-semibold text-dark mb-3">Details</h3>
<div class="mb-2">
{% if tvshow.episode_run_time %}
<small class="text-muted d-block">Episode Runtime</small>
<span class="fw-medium">{{ tvshow.episode_run_time }} minutes</span>
{% endif %}
</div>
{% if tvshow.origin_country %}
<div class="mb-2">
<small class="text-muted d-block">Origin Country</small>
<span class="fw-medium">{{ tvshow.origin_country }}</span>
</div>
{% endif %}
{% if tvshow.original_language %}
<div class="mb-2">
<small class="text-muted d-block">Language</small>
<span class="fw-medium">{{ tvshow.original_language|upper }}</span>
</div>
{% endif %}
</div>
{% endif %}
</div>
<!-- Seasons Section -->
{% if seasons %}
<div class="mb-4">
<h3 class="h5 fw-semibold text-dark mb-3">Seasons</h3>
<div class="accordion" id="seasonsAccordion">
{% for season in seasons %}
<div class="accordion-item">
<h2 class="accordion-header" id="heading{{ season.season_number }}">
<button class="accordion-button {% if loop.first %}collapsed{% else %}collapsed{% endif %}" type="button" data-bs-toggle="collapse" data-bs-target="#collapse{{ season.season_number }}" aria-expanded="{% if loop.first %}true{% else %}false{% endif %}" aria-controls="collapse{{ season.season_number }}">
<div class="d-flex justify-content-between w-100">
<span>Season {{ season.season_number }}</span>
<span class="text-muted">{{ season.episode_count }} episodes</span>
</div>
</button>
</h2>
<div id="collapse{{ season.season_number }}" class="accordion-collapse collapse {% if loop.first %}show{% endif %}" aria-labelledby="heading{{ season.season_number }}" data-bs-parent="#seasonsAccordion">
<div class="accordion-body">
{% if season.episodes %}
<div class="list-group list-group-flush">
{% for episode in season.episodes %}
<div class="list-group-item d-flex align-items-center py-3">
<div class="flex-shrink-0 me-3">
{% if episode.poster_url %}
<img src="/images/{{ episode.poster_url }}" alt="{{ episode.title }}" class="rounded" style="width: 60px; height: 34px; object-fit: cover;">
{% else %}
<div class="rounded d-flex align-items-center justify-content-center bg-light" style="width: 60px; height: 34px;">
<svg class="text-muted" width="20" height="20" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 10l4.553-2.276A1 1 0 0121 8.618v6.764a1 1 0 01-1.447.894L15 14M5 18h8a2 2 0 002-2V8a2 2 0 00-2-2H5a2 2 0 00-2 2v8a2 2 0 002 2z"/>
</svg>
</div>
{% endif %}
</div>
<div class="flex-grow-1">
<div class="d-flex align-items-center gap-2 mb-1">
<span class="badge bg-info">E{{ episode.episode_number }}</span>
{% if episode.air_date %}
<span class="small text-muted">{{ episode.air_date|date('M j, Y') }}</span>
{% endif %}
{% if episode.is_watched %}
<span class="badge bg-success">Watched</span>
{% endif %}
</div>
<h6 class="mb-1">{{ episode.title }}</h6>
{% if episode.overview %}
<p class="small text-muted mb-0">{{ episode.overview|slice(0, 100) }}{% if episode.overview|length > 100 %}...{% endif %}</p>
{% endif %}
</div>
</div>
{% endfor %}
</div>
{% else %}
<p class="text-muted">No episodes available.</p>
{% endif %}
</div>
</div>
</div>
{% endfor %}
</div>
</div>
{% endif %}
<!-- Recent Episodes -->
{% if recent_episodes %}
<div class="mb-4">
<h3 class="h5 fw-semibold text-dark mb-3">Recent Episodes</h3>
<div class="vstack gap-3">
{% for episode in recent_episodes[:5] %}
<div class="card border-0 bg-light">
<div class="card-body p-3">
<div class="d-flex">
<div class="flex-shrink-0 me-3">
{% if episode.still_url %}
<img src="/images/{{ episode.still_url }}" alt="{{ episode.title }}" class="rounded" style="width: 120px; height: 68px; object-fit: cover;">
{% else %}
<div class="rounded d-flex align-items-center justify-content-center bg-secondary" style="width: 120px; height: 68px;">
<svg class="text-white" width="32" height="32" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 10l4.553-2.276A1 1 0 0121 8.618v6.764a1 1 0 01-1.447.894L15 14M5 18h8a2 2 0 002-2V8a2 2 0 00-2-2H5a2 2 0 00-2 2v8a2 2 0 002 2z"/>
</svg>
</div>
{% endif %}
</div>
<div class="flex-grow-1">
<div class="d-flex align-items-center gap-2 mb-1">
<span class="badge bg-info">S{{ episode.season_number }}E{{ episode.episode_number }}</span>
<span class="small text-muted">{{ episode.air_date|date('M j, Y') }}</span>
</div>
<h6 class="fw-medium mb-1">{{ episode.title }}</h6>
{% if episode.vote_average %}
<div class="d-flex align-items-center small text-muted">
<svg class="me-1 text-warning" width="14" height="14" fill="currentColor" viewBox="0 0 20 20">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"/>
</svg>
{{ episode.vote_average }}/10
</div>
{% endif %}
</div>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
{% endif %}
<!-- Streaming & Availability -->
{% if tvshow.streaming_providers or tvshow.availability %}
<div class="mb-4">
<h3 class="h5 fw-semibold text-dark mb-3">Where to Watch</h3>
<div class="row g-3">
{% if tvshow.streaming_providers %}
<div class="col-md-6">
<small class="text-muted d-block mb-2">Streaming</small>
<div class="d-flex flex-wrap gap-2">
{% for provider in tvshow.streaming_providers %}
<span class="badge bg-success">{{ provider }}</span>
{% endfor %}
</div>
</div>
{% endif %}
{% if tvshow.availability %}
<div class="col-md-6">
<small class="text-muted d-block mb-2">Availability</small>
<span class="fw-medium">{{ tvshow.availability }}</span>
</div>
{% endif %}
</div>
</div>
{% endif %}
<!-- Metadata (for debugging/advanced users) -->
{% if metadata %}
<div class="mt-4 pt-4 border-top">
<details class="group">
<summary class="cursor-pointer small fw-medium text-muted hover:text-dark d-flex align-items-center">
<svg class="me-2 group-open:rotate-90 transition-transform" width="16" height="16" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"/>
</svg>
Technical Details & Metadata
</summary>
<div class="mt-3 small">
<pre class="bg-light p-3 rounded"><code>{{ metadata|json_encode(constant('JSON_PRETTY_PRINT')) }}</code></pre>
</div>
</details>
</div>
{% endif %}
</div>
</div>
</div>
</div>