Files
ohm_streaming/templates/components/series_releases_list.html
T
root 87f245d3fc
CI / Test (Python 3.11) (pull_request) Has been cancelled
CI / Test (Python 3.12) (pull_request) Has been cancelled
CI / Lint (pull_request) Has been cancelled
CI / Type Check (pull_request) Has been cancelled
CI / Summary (pull_request) Has been cancelled
feat: flat design Sunset Glitch + download manager + settings + recommendations overhaul
- Sunset Glitch color palette applied to all templates
- Font Awesome icons throughout UI
- Download manager with parallel queue and progress tracking
- Settings page with dynamic configuration
- Recommendations router enhanced with scoring
- Local vendor libs (Alpine.js, HTMX) for offline support
- Auto test suite with screenshots
- Series releases list component
- New download model
2026-04-11 19:30:32 +00:00

12 lines
273 B
HTML

{% from "components/series_card.html" import series_card %}
{% if releases %}
{% for series in releases %}
{{ series_card(series) }}
{% endfor %}
{% else %}
<div class="empty-state">
<p>Aucune sortie recente trouvee.</p>
</div>
{% endif %}