diff --git a/tlapbot/owncast_redeem_dashboard.py b/tlapbot/owncast_redeem_dashboard.py index e0fd390..e38f81b 100644 --- a/tlapbot/owncast_redeem_dashboard.py +++ b/tlapbot/owncast_redeem_dashboard.py @@ -1,6 +1,6 @@ from flask import render_template, Blueprint from tlapbot.db import get_db -from tlapbot.owncast_helpers import pretty_redeem_queue +from tlapbot.owncast_helpers import pretty_redeem_queue, all_counters from datetime import datetime, timezone bp = Blueprint('redeem_dashboard', __name__) diff --git a/tlapbot/templates/dashboard.html b/tlapbot/templates/dashboard.html index 5469bd2..daa1a84 100644 --- a/tlapbot/templates/dashboard.html +++ b/tlapbot/templates/dashboard.html @@ -12,11 +12,12 @@ Counters + {% for counter in counters %} - {% for counter in counters %} {{ counter[0] }} - {{ counter[1] }} + {{ counter[1] }} + {% endfor %} {% endif %}