{% extends "base_list.html" %} {% block title %}{{ trend.title }}{% endblock %} {% block lists %}
← All Trends

{{ trend.icon }} {{ trend.title }}

{{ trend.description }}

{% if supported_periods|length > 1 %}
{% if prev_period or next_period %}
{% if prev_period %} « Prev {% endif %} {% if next_period %} Next » {% endif %}
{% endif %}
{% endif %} {% if computed_at %} Last computed: {{ computed_at|date:"F j, Y H:i" }} {% endif %}
{% if trend_not_found %}
Trend not found.
{% elif data is None %}
No data computed yet for this period. Trends are updated once daily, check back later.
{% elif trend.slug == "concurrent-listening" %} {% include "trends/_concurrent_listening.html" %} {% elif trend.slug == "concurrent-reading" %} {% include "trends/_concurrent_reading.html" %} {% elif trend.slug == "reading-pace-vs-activity" %} {% include "trends/_reading_pace.html" %} {% elif trend.slug == "trending-up" %} {% include "trends/_trending_up.html" %} {% elif trend.slug == "peak-hours" %} {% include "trends/_peak_hours.html" %} {% elif trend.slug == "weekly-rhythm" %} {% include "trends/_weekly_rhythm.html" %} {% elif trend.slug == "activity-distribution" %} {% include "trends/_activity_distribution.html" %} {% elif trend.slug == "mood-trajectory" %} {% include "trends/_mood_trajectory.html" %} {% elif trend.slug == "mood-by-time" %} {% include "trends/_mood_by_time.html" %} {% elif trend.slug == "mood-distribution" %} {% include "trends/_mood_distribution.html" %} {% elif trend.slug == "mood-streaks" %} {% include "trends/_mood_streaks.html" %} {% elif trend.slug == "mood-weather" %} {% include "trends/_mood_weather.html" %} {% endif %} {% endblock %}