{% extends "base.html" %} {% set active_nav = "watchlist" %} {% block title %}Watchlist - Distill{% endblock %} {% block content %}

Watchlist

{{ channel_watches|length }} channel watches · {{ topic_watches|length }} topic watches

{% if stale %}
{% for msg in stale %}
{{ msg }}
{% endfor %}
{% endif %}

Channel Watches

{% for w in channel_watches %} {% else %} {% endfor %}
ChannelTopicLookback
{{ w.name }} {{ w.topic }} {{ w.days }}d
No channel watches configured

Topic Watches

{% for tw in topic_watches %} {% set e = tw.entry %} {% else %} {% endfor %}
NameCadencePicksBudgetStatus
{{ e.name }}
{{ e.topic }} / {{ e.days }}d
{{ e.cadence }} {{ e.limit }} ~${{ "%.2f"|format(tw.projected_cost) }}/run {% if e.monthly_budget %}
${{ "%.2f"|format(e.monthly_budget) }}/mo{% endif %}
{% if e.paused %} paused {% else %} active {% endif %}
No topic watches configured
{% endblock %}