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

File last commit:

r366:bdf15dfd5ebe
r392:16208270cf50
Show More
experiment_mix.html
33 lines | 964 B | text/html | HtmlDjangoLexer
Juan C. Espinoza
Update main templates...
r96 {% extends "base_edit.html" %}
Nueva plantilla, prueba comunicacion y nuevos campos ddsrest
r335 {% load bootstrap4 %}
Juan C. Espinoza
Update main templates...
r96 {% load static %}
{% load main_tags %}
{% block extra-head %}
<link href="{% static 'css/bootstrap-datetimepicker.min.css' %}" media="screen" rel="stylesheet">
Juan C. Espinoza
Update main app (view to mix RC configurations)...
r106 <style type="text/css">
.tabuled {font-family: Courier New}
.check-inline {display: inline}
</style>
Juan C. Espinoza
Update main templates...
r96 {% endblock %}
{% block extra-js%}
<script src="{% static 'js/moment.min.js' %}"></script>
<script src="{% static 'js/bootstrap-datetimepicker.min.js' %}"></script>
<script src="{% static 'js/cr.js' %}"></script>
Juan C. Espinoza
Update main app (view to mix RC configurations)...
r106 <script type="text/javascript">
$("#bt_Delete").click(function() {
document.location = "{% url 'url_delete_mix_experiment' id_exp %}";
});
Juan C. Espinoza
Fix mix RC configurations for different ipp's...
r112 $('input[type=radio][name=mode]').change(function() {
if (this.value == '0') {
$('input[type=radio][name=operation]').prop('disabled', false);
}else{
$('input[type=radio][name=operation]').prop('disabled', true);
}
});
Juan C. Espinoza
Update main app (view to mix RC configurations)...
r106 </script>
Juan C. Espinoza
Update main templates...
r96 {% endblock %}