From 312ad3d93d9bfb265cd60c963ebea52e60d05190 Mon Sep 17 00:00:00 2001 From: null Date: Thu, 7 Mar 2024 19:51:57 +0100 Subject: [PATCH] add disabled to table as well --- templates/index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates/index.html b/templates/index.html index 9f56933..ab34418 100644 --- a/templates/index.html +++ b/templates/index.html @@ -26,6 +26,7 @@ Symbol Condition Value + Disabled {% else %} @@ -37,7 +38,7 @@ {% for item in data.conditions %} - {% set order = ["id", "symbol", "condition", "value"] %} + {% set order = ["id", "symbol", "condition", "value", "disabled"] %} {% for key in order %} {{ item[key] }} {% endfor %}