##// END OF EJS Templates
Add power monitor
Add power monitor

File last commit:

r366:bdf15dfd5ebe
r393:737695221ef9
Show More
usrp_rx_conf.html
29 lines | 656 B | text/html | HtmlDjangoLexer
Juan C. Espinoza
Add rc config mods...
r23 {% extends "dev_conf.html" %}
{% load static %}
Nueva plantilla, prueba comunicacion y nuevos campos ddsrest
r335 {% load bootstrap4 %}
Juan C. Espinoza
Update RC models, views, templates & statics...
r45 {% load main_tags %}
Juan C. Espinoza
Updates to models, views & forms for CR...
r25
Juan C. Espinoza
Add compatibility with embed CGS in RC
r328 {% block content-detail %}
Limpieza de código y funcionalidades usrp
r346 <h2>USRP Rx</h2>
Juan C. Espinoza
Add compatibility with embed CGS in RC
r328 <table class="table table-bordered">
<tr>
<th>Status</th>
<td class="text-{{dev_conf.device.status_color}}"><strong>{{dev_conf.device.get_status_display}}</strong></td>
</tr>
{% for key in dev_conf_keys %}
<tr>
<th>{% get_verbose_field_name dev_conf key %}</th>
<td>{{dev_conf|attr:key}}</td>
</tr>
{% endfor %}
</table>
{% endblock %}
Juan C. Espinoza
sync repo...
r157 {% block extra-js%}
<script type="text/javascript">
$("#bt_toggle").click(function() {
$(".panel-collapse").collapse('toggle')
});
</script>
{% endblock %}