diff --git a/smash/web/api_views/daily_planning.py b/smash/web/api_views/daily_planning.py index ec08fdcd5b6b83a46694dfe13e6aeb96e667ca62..b3937a776a29f124b92726aeee4485d313b344a1 100644 --- a/smash/web/api_views/daily_planning.py +++ b/smash/web/api_views/daily_planning.py @@ -57,6 +57,7 @@ def get_holidays(worker, date): 'link_when': start_date, 'link_who': worker.id, 'link_end': end_date, + 'kind': holiday.kind } result.append(event) diff --git a/smash/web/static/js/daily_planning.js b/smash/web/static/js/daily_planning.js index 0febcc3c23bb664a06691491f767e0ec8c31bf38..ec0c0e57d331b9f4ebc7e7c0261898909c1158ba 100644 --- a/smash/web/static/js/daily_planning.js +++ b/smash/web/static/js/daily_planning.js @@ -106,7 +106,11 @@ function get_subjects_events(day) { }); var holidays = data.holidays; $.each(holidays, function (index, event) { - event.backgroundColor = '#FFAAAA !important'; + if(event.kind == 'H'){ + event.backgroundColor = '#FFAAAA !important'; + }else{ + event.backgroundColor = '#AAFFAA !important'; + } event.start = $.fullCalendar.moment(event.link_when); event.end = $.fullCalendar.moment(event.link_end); event.rendering = 'background'; @@ -287,7 +291,6 @@ $(document).ready(function () { appointmentsCleared.splice(index, 1); } } - } }); $.post({ @@ -383,7 +386,6 @@ $(document).ready(function () { html: true }); } else { - } }, selectAllow: function (selectInfo) {