mirror of
https://github.com/ceratic/MediaCollectorLibary.git
synced 2026-05-13 23:56:46 +02:00
actor fetching :)
Stash / ADultVideoAPI
This commit is contained in:
@@ -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 %}
|
||||
|
||||
Reference in New Issue
Block a user