Files
ohm_streaming/templates/components/recommendations_list.html
T
root 9f85908ff3
CI / Test (Python 3.11) (push) Has been cancelled
CI / Test (Python 3.12) (push) Has been cancelled
CI / Lint (push) Has been cancelled
CI / Type Check (push) Has been cancelled
CI / Summary (push) Has been cancelled
Phase 3: HTMX & Alpine.js integration, router refactoring, and UI modernization
- Modernized the frontend with HTMX for server-driven UI and Alpine.js for client state.
- Refactored anime, player, and recommendation logic into modular routers.
- Updated README.md to reflect the latest project state and technologies (v2.4).
- Added Plyr.io for an improved streaming experience.
- Improved project structure with componentized templates.
- Added Playwright and Vitest configuration for frontend testing.
2026-03-26 10:34:26 +00:00

12 lines
289 B
HTML

{% from "components/anime_card.html" import anime_card %}
{% if recommendations %}
{% for anime in recommendations %}
{{ anime_card(anime) }}
{% endfor %}
{% else %}
<div class="empty-state">
<p>Aucune recommandation pour le moment.</p>
</div>
{% endif %}