##// END OF EJS Templates
Add start, stop methods to experiment, fix RC dat export file...
Add start, stop methods to experiment, fix RC dat export file git-svn-id: http://jro-dev.igp.gob.pe/svn/jro_hard/radarsys/trunk/webapp@266 aa17d016-51d5-4e8b-934c-7b2bbb1bbe71

File last commit:

r216:b2dd58174160
r240:7e783bc1dbef
Show More
dev_conf.html
84 lines | 3.1 KiB | text/html | HtmlDjangoLexer
Miguel Urco
Campaign has been added to RadarSys Model...
r13 {% extends "base.html" %}
{% load bootstrap3 %}
{% load static %}
{% load main_tags %}
Juan C. Espinoza
Update several views and models in main app...
r85 {% block search-active %}active{% endblock %}
Miguel Urco
Campaign has been added to RadarSys Model...
r13
{% block content-title %}{{title}}{% endblock %}
{% block content-suptitle %}{{suptitle}}{% endblock %}
{% block content %}
Miguel Urco
git-svn-id: http://jro-dev.igp.gob.pe/svn/jro_hard/radarsys/trunk/webapp@44 aa17d016-51d5-4e8b-934c-7b2bbb1bbe71
r26
Juan C. Espinoza
- Update rc app...
r79 {% block menu-actions %}
Miguel Urco
Models changed:...
r53 <span class=" dropdown pull-right">
Juan C. Espinoza
Update several views and models in main app...
r85 <a href="#" class="dropdown-toggle" data-toggle="dropdown"><span class="glyphicon glyphicon-menu-hamburger gi-2x" aria-hidden="true"></span></a>
Miguel Urco
Models changed:...
r53 <ul class="dropdown-menu" role="menu">
Miguel Urco
DDS model updated...
r55 <li><a href="{{ dev_conf.get_absolute_url_edit }}"><span class="glyphicon glyphicon-pencil" aria-hidden="true"></span> Edit</a></li>
Juan C. Espinoza
Update main app (view to mix RC configurations)...
r106 <li><a href="{% url 'url_delete_dev_conf' dev_conf.id %}"><span class="glyphicon glyphicon-remove" aria-hidden="true"></span> Delete</a></li>
Miguel Urco
DDS model updated...
r55 <li><a href="{{ dev_conf.get_absolute_url_import }}"><span class="glyphicon glyphicon-import" aria-hidden="true"></span> Import </a></li>
Fiorella Quino
no sidebar for plotting abs patterns...
r197 <li><a href="{{ dev_conf.get_absolute_url_export }}"><span class="glyphicon glyphicon-export" aria-hidden="true"></span> Export </a></li>
Juan C. Espinoza
- Update rc app...
r79 {% block extra-menu-actions %}
{% endblock %}
Miguel Urco
Models changed:...
r53 <li><a>----------------</a></li>
Miguel Urco
DDS model updated...
r55 <li><a href="{{ dev_conf.get_absolute_url_status }}"><span class="glyphicon glyphicon-refresh" aria-hidden="true"></span> Status</a></li>
Fiorella Quino
Task #95: Modulo CGS "no-play" "no-stop"...
r60 {% if not no_play %}
Juan C. Espinoza
sync repo...
r157 {% if not only_stop %}
<li><a href="{{ dev_conf.get_absolute_url_start}}"><span class="glyphicon glyphicon-play" aria-hidden="true"></span> Start</a></li>
{% endif %}
Miguel Urco
DDS model updated...
r55 <li><a href="{{ dev_conf.get_absolute_url_stop }}"><span class="glyphicon glyphicon-stop" aria-hidden="true"></span> Stop</a></li>
Fiorella Quino
Task #95: Modulo CGS "no-play" "no-stop"...
r60 {% endif %}
Miguel Urco
DDS model updated...
r55 <li><a href="{{ dev_conf.get_absolute_url_write }}"><span class="glyphicon glyphicon-download" aria-hidden="true"></span> Write</a></li>
Fiorella Quino
standardize functions in cgs device, abs device does not have read_device function...
r207 {% if dev_conf.device.device_type.name != 'abs' %}
Miguel Urco
DDS model updated...
r55 <li><a href="{{ dev_conf.get_absolute_url_read }}"><span class="glyphicon glyphicon-upload" aria-hidden="true"></span> Read</a></li>
Fiorella Quino
standardize functions in cgs device, abs device does not have read_device function...
r207 {% endif %}
Fiorella Quino
no sidebar for plotting abs patterns...
r197 </ul>
Miguel Urco
Models changed:...
r53 </span>
Juan C. Espinoza
- Update rc app...
r79 {% endblock %}
Miguel Urco
Campaign has been added to RadarSys Model...
r13 <table class="table table-bordered">
Miguel Urco
Buttons "Import", "Export, "Read" and "Write" added to Configuration View...
r30 <tr>
<th>Status</th>
Juan C. Espinoza
Use of cards instead of tables in operation & experiment views...
r216 <td class="text-{{dev_conf.device.status_color}}"><strong> {% if dev_conf.device.device_type.name == 'abs' %} {{connected_modules}} {% else %} {{dev_conf.device.get_status_display}}{% endif %}</strong></td>
Miguel Urco
Buttons "Import", "Export, "Read" and "Write" added to Configuration View...
r30 </tr>
Fiorella Quino
no sidebar for plotting abs patterns...
r197
Miguel Urco
Buttons "Import", "Export, "Read" and "Write" added to Configuration View...
r30 {% for key in dev_conf_keys %}
<tr>
<th>{% get_verbose_field_name dev_conf key %}</th>
<td>{{dev_conf|attr:key}}</td>
</tr>
{% endfor %}
Miguel Urco
Campaign has been added to RadarSys Model...
r13 </table>
Miguel Urco
git-svn-id: http://jro-dev.igp.gob.pe/svn/jro_hard/radarsys/trunk/webapp@44 aa17d016-51d5-4e8b-934c-7b2bbb1bbe71
r26
Juan C. Espinoza
- Update rc app...
r79 {% block extra-content %}
{% endblock %}
Miguel Urco
Campaign has been added to RadarSys Model...
r13 {% endblock %}
Fiorella Quino
no sidebar for plotting abs patterns...
r197
Miguel Urco
Campaign has been added to RadarSys Model...
r13
{% block extra-js%}
<script type="text/javascript">
Fiorella Quino
no sidebar for plotting abs patterns...
r197
Miguel Urco
Export and Send buttons added to templates...
r15 $("#bt_edit").click(function() {
Miguel Urco
Buttons "Import", "Export, "Read" and "Write" added to Configuration View...
r30 document.location = "{{ dev_conf.get_absolute_url_edit }}";
});
Fiorella Quino
no sidebar for plotting abs patterns...
r197
Miguel Urco
Buttons "Import", "Export, "Read" and "Write" added to Configuration View...
r30 $("#bt_read").click(function() {
document.location = "{{ dev_conf.get_absolute_url_read }}";
});
$("#bt_write").click(function() {
document.location = "{{ dev_conf.get_absolute_url_write }}";
});
$("#bt_import").click(function() {
document.location = "{{ dev_conf.get_absolute_url_import }}";
});
$("#bt_export").click(function() {
document.location = "{{ dev_conf.get_absolute_url_export }}";
Miguel Urco
Campaign has been added to RadarSys Model...
r13 });
Fiorella Quino
no sidebar for plotting abs patterns...
r197
Miguel Urco
Campaign has been added to RadarSys Model...
r13 </script>
Fiorella Quino
no sidebar for plotting abs patterns...
r197 {% endblock %}