##// END OF EJS Templates
comment missing views...
comment missing views git-svn-id: http://jro-dev.igp.gob.pe/svn/jro_hard/radarsys/trunk/webapp@196 aa17d016-51d5-4e8b-934c-7b2bbb1bbe71

File last commit:

r112:90a1581a0938
r173:63992b89a422
Show More
experiment_mix.html
33 lines | 964 B | text/html | HtmlDjangoLexer
{% extends "base_edit.html" %}
{% load bootstrap3 %}
{% load static %}
{% load main_tags %}
{% block extra-head %}
<link href="{% static 'css/bootstrap-datetimepicker.min.css' %}" media="screen" rel="stylesheet">
<style type="text/css">
.tabuled {font-family: Courier New}
.check-inline {display: inline}
</style>
{% 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>
<script type="text/javascript">
$("#bt_Delete").click(function() {
document.location = "{% url 'url_delete_mix_experiment' id_exp %}";
});
$('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);
}
});
</script>
{% endblock %}