Commit 7afe7863 authored by Kristian Tan's avatar Kristian Tan

display device details in both states

parent 7126ac46
......@@ -24,22 +24,22 @@
(<a href="/toggle/{{ pin }}">turn on</a>)
(<a href="/remove/{{ pin }}">remove</a>)
</p>
<p>
<ul class="device_details">
{% if pins[pin].on_date != None or pins[pin].on_time %}
<li>
{% if pins[pin].on_date != None %}
{{ pins[pin].on_date }}
{% endif %}
{% if pins[pin].on_time != None %}
{{ pins[pin].on_time }}
{% endif %}
</li>
{% endif %}
<p>
<ul class="device_details">
{% if pins[pin].on_date != None or pins[pin].on_time %}
<li>
{% if pins[pin].on_date != None %}
{{ pins[pin].on_date }}
{% endif %}
<li>Device Wattage: {{ pins[pin].wattage }} </li>
</ul>
</p>
{% if pins[pin].on_time != None %}
{{ pins[pin].on_time }}
{% endif %}
</li>
{% endif %}
<li>Device Wattage: {{ pins[pin].wattage }} </li>
</ul>
</p>
{% endif %}
{% endfor %}
<p><a href="/devices/add_device">Add device</a></p>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment