Implemented User Management
This commit is contained in:
@@ -8,14 +8,14 @@
|
||||
|
||||
{% block content %}
|
||||
<main>
|
||||
{% for group in ldata %}
|
||||
{% if ldata[group]["lights"] %}
|
||||
{% for group in ldatas %}
|
||||
{% if ldatas[group]["lights"] %}
|
||||
<div class="group">
|
||||
<h2>{{ ldata[group]["name"] }}</h2>
|
||||
<h2>{{ ldatas[group]["name"] }}</h2>
|
||||
<div>
|
||||
{% for light in ldata[group]["lights"] %}
|
||||
{% for light in ldatas[group]["lights"] %}
|
||||
<form method="post" class="light">
|
||||
{% set ldata = ldata[group]["lights"][light] %}
|
||||
{% set ldata = ldatas[group]["lights"][light] %}
|
||||
<h3>{{ ldata["name"] }}</h3>
|
||||
<div class="view">
|
||||
<div class="view-symb">
|
||||
|
||||
Reference in New Issue
Block a user