##// END OF EJS Templates
Actualizacion campos y correccion app abs 1sem Sep
Actualizacion campos y correccion app abs 1sem Sep

File last commit:

r338:7377db7c77e8
r340:0cdf785c9933
Show More
experiment_mix.html
33 lines | 964 B | text/html | HtmlDjangoLexer
/ apps / main / templates / experiment_mix.html
Juan C. Espinoza
Update main templates...
r96 {% extends "base_edit.html" %}
Nueva plantilla, prueba comunicacion y nuevos campos ddsrest
r338 {% 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 %}