Commit 30f5a665 authored by Kristian Tan's avatar Kristian Tan

None checks

parent a80a855a
......@@ -25,10 +25,19 @@
(<a href="/remove/{{ pin }}">remove</a>)
</p>
<p>
<ul>
<li>Last turned on: {{ pins[pin].on_date }} {{ pins[pin].on_time }}</li>
<li>Device Wattage: {{ pins[pin].wattage }} </li>
</ul>
<ul class="device_details">
{% if pins[pin].one_date != None or pins[pin].on_time %}
<li>
{% if pins[pin].one_date != None %}
{{ pins[pin].on_date }}
{% endif %}
{% if pins[pin].on_time != None %}
{{ pins[pin].on_time }}
{% endif %}
</li>
{% endif %}
<li>Device Wattage: {{ pins[pin].wattage }} </li>
</ul>
</p>
{% endif %}
{% endif %}
......
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