From fb7ae95a8a386aa9effdb0ec6e25a63a945608a4 Mon Sep 17 00:00:00 2001 From: Aaron Kable Date: Thu, 8 Jan 2026 17:58:10 +0800 Subject: [PATCH] fox template cxt --- allianceauth/framework/datatables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/allianceauth/framework/datatables.py b/allianceauth/framework/datatables.py index 55b15fe5..b3494e65 100644 --- a/allianceauth/framework/datatables.py +++ b/allianceauth/framework/datatables.py @@ -128,7 +128,7 @@ class DataTablesView(View): # build output for row in qs[start:limit]: - ctx = {"note": row} + ctx = {"row": row} row = [] for t in self.columns: row.append(self.render_template(request, t[1], ctx))