actor fetching :)

Stash / ADultVideoAPI
This commit is contained in:
Lars Behrends
2025-11-06 12:07:12 +01:00
parent 1ec6016b10
commit 3f56625205
7 changed files with 1048 additions and 58 deletions

View File

@@ -29,7 +29,10 @@
{% if metadata.nationality %}
<div class="flex justify-between items-center">
<span class="text-sm text-gray-600">Nationality</span>
<span class="text-sm font-medium">{{ metadata.nationality }}</span>
<div class="text-sm font-medium flex items-center gap-2">
{{ country_flag(metadata.nationality) | raw }}
{{ metadata.nationality }}
</div>
</div>
{% endif %}
{% if metadata.death_date %}
@@ -413,7 +416,7 @@
<div class="bg-white rounded-lg shadow-md overflow-hidden hover:shadow-xl transition-shadow">
<div class="aspect-[2/3] bg-gray-200">
{% if scene.poster_url %}
<img src="/images/{{ scene.poster_url }}" alt="{{ scene.title }}" class="w-full h-full object-cover group-hover:scale-105 transition-transform">
<img src="{% if '/images/' in scene.poster_url %}{{ scene.poster_url }}{% else %}/images/{{ scene.poster_url }}{% endif %}" alt="{{ scene.title }}" class="w-full h-full object-cover group-hover:scale-105 transition-transform">
{% else %}
<div class="w-full h-full flex items-center justify-center bg-gradient-to-br from-gray-300 to-gray-400">
<svg class="text-gray-500 w-8 h-8" fill="none" viewBox="0 0 24 24" stroke="currentColor">
@@ -449,4 +452,4 @@
{% endif %}
</div>
{% endblock %}
{% endblock %}