##// END OF EJS Templates
Improve abs pattern views, templates and plots....
Improve abs pattern views, templates and plots. git-svn-id: http://jro-dev.igp.gob.pe/svn/jro_hard/radarsys/trunk/webapp@203 aa17d016-51d5-4e8b-934c-7b2bbb1bbe71

File last commit:

r172:a641bec15a9b
r180:d4783015f56a
Show More
sidebar_devices.html
37 lines | 1.1 KiB | text/html | HtmlDjangoLexer
/ apps / main / templates / sidebar_devices.html
Juan C. Espinoza
Update code for django 1.10, python 3 and latest third party packages, review operation view ...
r172
Juan C. Espinoza
- Update rc app...
r79 {% if campaign %}
<div class="panel panel-default">
<div class="panel-heading">
<h4>Campaign</h4>
</div>
Juan C. Espinoza
Update code for django 1.10, python 3 and latest third party packages, review operation view ...
r172 <div class="list-group">
Juan C. Espinoza
Update several views and models in main app...
r85 <a href="{% url 'url_campaign' campaign.id %}" class="list-group-item active" >{{ campaign.name }}</a>
Juan C. Espinoza
- Update rc app...
r79 </div>
</div>
{% endif %}
Juan C. Espinoza
Update code for django 1.10, python 3 and latest third party packages, review operation view ...
r172
Juan C. Espinoza
Update several views and models in main app...
r85 {% if experiment %}
Miguel Urco
siderbar_devices.html updated...
r17 <div class="panel panel-default">
<div class="panel-heading">
<h4>Experiments</h4>
</div>
Juan C. Espinoza
Update code for django 1.10, python 3 and latest third party packages, review operation view ...
r172 <div class="list-group">
Juan C. Espinoza
Update several views and models in main app...
r85 {% for item in side_experiments %}
Juan C. Espinoza
Update code for django 1.10, python 3 and latest third party packages, review operation view ...
r172 <a href="{% url 'url_experiment' item.id %}" class="list-group-item {%if item.id == experiment.id%}active{%endif%}">{{item.name}}</a>
Miguel Urco
siderbar_devices.html updated...
r17 {% endfor %}
</div>
</div>
{% endif %}
Juan C. Espinoza
Update code for django 1.10, python 3 and latest third party packages, review operation view ...
r172
Juan C. Espinoza
Update several views and models in main app...
r85 {% if dev_conf %}
Miguel Urco
siderbar_devices.html updated...
r17 <div class="panel panel-default">
<div class="panel-heading">
<h4>Device Configurations</h4>
</div>
Juan C. Espinoza
Update code for django 1.10, python 3 and latest third party packages, review operation view ...
r172 <div class="list-group">
Juan C. Espinoza
Update several views and models in main app...
r85 {% for item in side_configurations %}
Juan C. Espinoza
Update main templates...
r96 <a href="{{item.get_absolute_url}}" class="list-group-item {%if item.id == dev_conf.id%}active{%endif%}">{{item}}</a>
Miguel Urco
siderbar_devices.html updated...
r17 {% endfor %}
</div>
</div>
{% endif %}