diff --git a/projects/activitypub_relay/src/python/relay/views.py b/projects/activitypub_relay/src/python/relay/views.py
index 2bb698a..a2da4b9 100644
--- a/projects/activitypub_relay/src/python/relay/views.py
+++ b/projects/activitypub_relay/src/python/relay/views.py
@@ -25,17 +25,18 @@ def register_route(method, path):
@register_route("GET", "/")
async def home(request):
- targets = "
" + "\n".join(f"- {it}
" for it in request.app.database.hostnames) + "
"
+ following = "" + ("\n".join(f"- {it}
" for it in request.app.database.hostnames)) + "
"
+ following_count = len(request.app.database.hostnames)
+ requested = "" + ("\n".join(f"- {it}
" for it in request.app.database["follow-requests"])) + "
"
+ requested_count = len(request.app.database["follow-requests"])
note = request.app.config.note
- count = len(request.app.database.hostnames)
host = request.app.config.host
text = f"""\
ActivityPub Relay at {host}