19 lines
423 B
HTML
19 lines
423 B
HTML
{% extends 'base.html' %}
|
|
{% block header %}
|
|
{% block title %}<h1>Space Zugangsverwaltung</h1>{% endblock %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
Zustand der Tür:
|
|
{% if door_state == 'closed' %}
|
|
<div style="color: red">
|
|
Abgeschlossen
|
|
</div>
|
|
{% elif door_state == 'open' %}
|
|
<div style="color: limegreen">
|
|
Geöffnet
|
|
</div>
|
|
{% endif %}
|
|
<br>
|
|
Position Drehgeber: {{ encoder_position }}
|
|
{% endblock %} |