You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

23 lines
424 B

{% extends 'base.html.j2' %}
{% block header %}
<h1>{% block title %}Status{% endblock %}</h1>
{% if g.user %}
<a class="action" href="{{ url_for('lights.toggle') }}">
{% if status.status %}
Desligar
{% else %}
Ligar
{% endif %}
</a>
{% endif %}
{% endblock %}
{% block content %}
{% if status.status %}
Ligado
{% else %}
Desligado
{% endif %}
{% endblock %}