wip: returns movie results in turbo frames

This commit is contained in:
2025-07-14 16:20:36 -05:00
parent 47108af1f8
commit f2971eee9c
4 changed files with 48 additions and 19 deletions

View File

@@ -0,0 +1,11 @@
{% block movie_results %}
<turbo-stream action="replace" targets="#{{ target }}">
<template>
<div class="p-4 flex flex-col gap-6 bg-orange-500 bg-clip-padding backdrop-filter backdrop-blur-md bg-opacity-60 rounded-md">
<div class="overflow-hidden rounded-md">
{{ include('torrentio/partial/option-table.html.twig', {controller: 'movie-results'}) }}
</div>
</div>
</template>
</turbo-stream>
{% endblock %}