diff --git a/src/biomon/static/biomon/js/biomon.allalerts.js b/src/biomon/static/biomon/js/biomon.allalerts.js new file mode 100644 index 0000000..2867b72 --- /dev/null +++ b/src/biomon/static/biomon/js/biomon.allalerts.js @@ -0,0 +1,36 @@ +/* + biomon - Signs monitoring and patient management application + + Copyright (C) 2015 Entr'ouvert + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +*/ + +(function($) { + $(function() { + $('div#controlbar').remove(); + $('div#content-1').css({'height': '100%'}); + $('div#alerts').css({'height': '94%'}); + + /* At beginning hide titles, if episodes they'll be displayed in fine */ + $('div#running-alerts span#running').hide(); + $('div#closed-alerts span#closed').hide(); + + /* Run alert stats updating */ + ALERTS.refresh_alerts_stats(); + + /* Run alert table updating */ + ALERTS.refresh_alerts(); + }) +})(jQuery); diff --git a/src/biomon/templates/biomon/alerts.html b/src/biomon/templates/biomon/alerts.html index f64c729..1816156 100644 --- a/src/biomon/templates/biomon/alerts.html +++ b/src/biomon/templates/biomon/alerts.html @@ -1,6 +1,10 @@ {% extends "biomon/base.html" %} {% load i18n %} +{% block extra_scripts %} + +{% endblock %} + {% block content-1-right %}
@@ -23,14 +27,3 @@
{% endblock %} - -{% block extra_end_scripts %} - -{% endblock %}