##// END OF EJS Templates
Updating base models and views ...
Updating base models and views git-svn-id: http://jro-dev.igp.gob.pe/svn/jro_hard/radarsys/trunk/webapp@19 aa17d016-51d5-4e8b-934c-7b2bbb1bbe71

File last commit:

r6:88585742ef2d
r6:88585742ef2d
Show More
sidebar_devices.html
11 lines | 365 B | text/html | HtmlDjangoLexer
/ apps / main / templates / sidebar_devices.html
Juan C. Espinoza
Updating base models and views ...
r6 {% if devices %}
<div class="panel panel-default">
<div class="panel-heading">
<h3>Devices</h3>
</div>
<div class="list-group">
{% for item in devices %}
<a href="/{{item.device_type__alias}}/{{item.configuration__id}}/" class="list-group-item {{item.active}}"><h4>{{item.device_type__name}}</h4></a>
{% endfor %}
</div>
</div>
{% endif %}