{% extends "base_list.html" %} {% block title %}Trends{% endblock %} {% block lists %}
{% if not user.is_authenticated %}
Log in to see your trends.
{% elif not trends %}
No trends computed yet. Trends are computed once daily, check back later.
{% else %} {% for trend in trends %}
{{ trend.icon }} {{ trend.title }}

{{ trend.description }}

{% if trend.computed_at %} Last computed: {{ trend.computed_at|date:"M j, Y H:i" }} {% else %} Pending {% endif %}
{% csrf_token %} {% if trend.disabled %} {% else %} {% endif %}
{% endfor %} {% endif %}
{% endblock %}