fixed typo causing door status not being displayed correctly

master
Simon Pirkelmann 2021-08-23 20:31:18 +02:00
parent 5afcf1f10a
commit 2ccec6fe32
1 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
{% block content %}
<div class="row">
Zustand der Tür:
{% if door_state == 'closed' %}
{% if door_state == 'close' %}
<div style="color: red">
Abgeschlossen
</div>
@ -35,4 +35,4 @@
{% endif %}
{% endblock %}
{% endblock %}