implement balance tool basic func done

This commit is contained in:
2021-06-02 01:00:23 +02:00
parent bf31cb59e8
commit 1641332661
4 changed files with 112 additions and 6 deletions

View File

@@ -0,0 +1,17 @@
{% for x in range(5) %}
<div class="row">
{% set leftP = d["left"][positions[x]] %}
{% set rightP = d["right"][positions[x]] %}
<div class="col-sm">
{{ positions[x] }}
</div>
<div class="col-sm"
{% if requests[leftP][x] | int >= 4 %}style="background: red;"{% endif %}>
{{ leftP }}
</div>
<div class="col-sm"
{% if requests[rightP][x] | int >= 4 %}style="background: red;"{% endif %}>
{{ rightP }}
</div>
</div>
{% endfor %}