##// END OF EJS Templates
Fix saving data position
Fix saving data position

File last commit:

r368:c3e97504a5df
r392:16208270cf50
Show More
sidebar_devices.html
26 lines | 708 B | text/html | HtmlDjangoLexer
/ volumes / sirm / 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 several views and models in main app...
r85 {% if experiment %}
Clean code and update Pedestal model
r368 <div class="panel panel-default">
<div class="panel-heading">
<h4>Configurations</h4>
</div>
<div class="list-group">
{% for item in side_configurations %}
<a href="{{item.get_absolute_url}}" class="list-group-item">{{item}}</a>
{% endfor %}
Miguel Urco
siderbar_devices.html updated...
r17 </div>
Clean code and update Pedestal model
r368 </div>
Miguel Urco
siderbar_devices.html updated...
r17 {% 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 %}