From 5cdd6ea4dbeeb684bd3ba95366b9f067cd28162e Mon Sep 17 00:00:00 2001 From: Stephen Nicholas Swatman Date: Wed, 7 Feb 2024 11:22:47 +0100 Subject: [PATCH] Fix high-is-good --- backend/abyssal_modules/templatetags/module_stats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/abyssal_modules/templatetags/module_stats.py b/backend/abyssal_modules/templatetags/module_stats.py index 3fafe9a..5703b84 100644 --- a/backend/abyssal_modules/templatetags/module_stats.py +++ b/backend/abyssal_modules/templatetags/module_stats.py @@ -23,7 +23,7 @@ def format_attribute_basic(val, attr): @register.filter def rendered_high_is_good(at): - return hg(at.id, at.high_is_good) + return hg(at.high_is_good, at.id) @register.filter() def delta(d, attr):