##// END OF EJS Templates
Campaign has been added to RadarSys Model...
Campaign has been added to RadarSys Model git-svn-id: http://jro-dev.igp.gob.pe/svn/jro_hard/radarsys/trunk/webapp@27 aa17d016-51d5-4e8b-934c-7b2bbb1bbe71

File last commit:

r13:6a2dde2f45c9
r13:6a2dde2f45c9
Show More
sidebar_devices.html
22 lines | 642 B | text/html | HtmlDjangoLexer
/ apps / main / templates / sidebar_devices.html
Miguel Urco
base.html and sidebar_devices.html were updated...
r10 {% if experiment %}
<div class="panel panel-default">
<div class="panel-heading">
<h3>Experiment</h3>
</div>
<div class="list-group">
Miguel Urco
Campaign has been added to RadarSys Model...
r13 <a href="{% url 'url_experiment' experiment.id %}" class="list-group-item active" >{{ experiment.name }}</a>
Miguel Urco
base.html and sidebar_devices.html were updated...
r10 </div>
</div>
{% endif %}
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 %}
Miguel Urco
Campaign has been added to RadarSys Model...
r13 <a href="/{{item.device_type__name}}/{{item.configuration__id}}/" class="list-group-item {{item.active}}">{{item.device_type__alias}}</a>
Juan C. Espinoza
Updating base models and views ...
r6 {% endfor %}
</div>
</div>
{% endif %}