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

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

{{ trend.description }}

{% 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. 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" %} {% endif %} {% endblock %}