62 lines
2.6 KiB
Twig
62 lines
2.6 KiB
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Dashboard — Torsearch{% endblock %}
|
|
{% block h2 %}Dashboard{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="p-4 z-10">
|
|
<div class="grid-stack gs-2">
|
|
<div class="grid-stack-item" gs-x="1">
|
|
<div class="grid-stack-item-content">
|
|
<twig:Card title="Active Downloads">
|
|
<twig:DownloadList :type="'active'" />
|
|
</twig:Card>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="grid-stack-item" gs-x="2">
|
|
<div class="grid-stack-item-content">
|
|
<twig:Card title="Complete Downloads" >
|
|
<twig:DownloadList :type="'complete'" />
|
|
</twig:Card>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="grid-stack-item" gs-x="3">
|
|
<div class="grid-stack-item-content">
|
|
<twig:Card title="Active Monitors">
|
|
<twig:MonitorList :type="'active'" />
|
|
</twig:Card>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="flex flex-col gap-4">
|
|
<twig:Card title="Popular Movies" contentClass="grid grid-cols-2 gap-4 md:flex md:flex-row md:justify-between w-full">
|
|
{% for movie in popular_movies %}
|
|
<twig:Poster imdbId="{{ movie.imdbId }}"
|
|
tmdbId="{{ movie.tmdbId }}"
|
|
title="{{ movie.title }}"
|
|
description="{{ movie.description }}"
|
|
image="{{ movie.poster }}"
|
|
year="{{ movie.year }}"
|
|
mediaType="movies"
|
|
/>
|
|
{% endfor %}
|
|
</twig:Card>
|
|
<twig:Card title="Popular TV Shows" contentClass="grid grid-cols-2 gap-4 md:flex flex-col md:flex-row justify-between w-full">
|
|
{% for movie in popular_tvshows %}
|
|
<twig:Poster imdbId="{{ movie.imdbId }}"
|
|
tmdbId="{{ movie.tmdbId }}"
|
|
title="{{ movie.title }}"
|
|
description="{{ movie.description }}"
|
|
image="{{ movie.poster }}"
|
|
year="{{ movie.year }}"
|
|
mediaType="tvshows"
|
|
/>
|
|
{% endfor %}
|
|
</twig:Card>
|
|
</div>
|
|
<div class="grid-stack" data-controller="dashboard-widgets"></div>
|
|
</div>
|
|
{% endblock %}
|