{% with messages = get_flashed_messages() %}
{% if messages %}
{% endif %}
{% endwith %}
| Controller# |
SN |
Doors |
Interlock Description |
{# Door not closed | #}
{# Forced intrusion | #}
{# Invalid swipe | #}
Operation |
{% for con in objlist %}
{% if con.f_ControllerSN > 200000000 %}
| {{ con.f_ControllerNO }} |
{{ con.f_ControllerSN }} |
{{ con.f_DoorsNames }} |
{# {{ con.f_ForceWarn }}#}
{# {% if con.f_ForceWarn %}#}
{# #}
{# {% else %}#}
{# {% endif %}#}
{% if (con.f_InterLock % 256)>4 %}
{{ interlockdesc[5] }}
{% else %}
{{ interlockdesc[con.f_InterLock % 256] }}
{% endif %}
|
|
{% endif %}
{% endfor %}