{% if user %} {% extends "base.html" %} {% block title %}Dashboard - Audiobookshelf Recommendations{% endblock %} {% block content %}

Your Dashboard

AI-powered book recommendations based on your listening history

Your Recommendations

{% if recommendations %}
{% for rec in recommendations %}

{{ rec.title }}

by {{ rec.author }}

{{ rec.description }}

Why this book:

{{ rec.reason }}

{% if rec.genres %}
{% for genre in rec.genres %} {{ genre }} {% endfor %}
{% endif %}
{% endfor %}
{% else %}

No recommendations yet. Sync your library and generate recommendations!

{% endif %}

Recent Listening History

{% if books %}
{% for item in books %}

{{ item.book.title }}

by {{ item.book.author }}

{% if item.session.is_finished %} Finished {% else %} In Progress ({{ (item.session.progress * 100) | round | int }}%) {% endif %}
{% endfor %}
{% else %}

No listening history found. Click "Sync with Audiobookshelf" to load your data.

{% endif %}
{% endblock %} {% else %} {# Landing page for logged-out users #} Audiobookshelf Recommendations

Audiobookshelf Recommendations

AI-powered book recommendations based on your Audiobookshelf listening history

Features

Smart Recommendations

Get personalized book recommendations powered by AI based on your listening history

Reading Statistics

Track your listening progress with detailed stats and insights

Audiobookshelf Integration

Seamlessly sync with your Audiobookshelf server

{% endif %}