If you are trying to set logic based on a checkbox value in HubDB, you can try updating your code to have the following:
{% if row.external == 0 %}
Note that you want to use the double equal sign "==" as the single is typically used to assign a value to a variable. The "external" should return either a 1 or 0 to reflect true/false.
Did my post help answer your query? Help the community by marking it as a solution.
✔️ Did this post help answer your query? Help the community by marking it as a solution.
If you are trying to set logic based on a checkbox value in HubDB, you can try updating your code to have the following:
{% if row.external == 0 %}
Note that you want to use the double equal sign "==" as the single is typically used to assign a value to a variable. The "external" should return either a 1 or 0 to reflect true/false.
Did my post help answer your query? Help the community by marking it as a solution.
✔️ Did this post help answer your query? Help the community by marking it as a solution.