21 lines
824 B
Twig
21 lines
824 B
Twig
{% 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 %}
|
|
|
|
{% block tvshow_results %}
|
|
<turbo-stream action="replace" targets="#{{ target }}">
|
|
<template>
|
|
<div id="{{ target }}">
|
|
{{ include('torrentio/partial/option-table.html.twig', {controller: 'tv-results'}) }}
|
|
</div>
|
|
</template>
|
|
</turbo-stream>
|
|
{% endblock %} |