Skip to content
Snippets Groups Projects
Commit 49b76ab3 authored by Jacek Lebioda's avatar Jacek Lebioda
Browse files

Removed hardcoded assignments, added real ones

parent b46233ce
No related branches found
No related tags found
No related merge requests found
......@@ -134,31 +134,17 @@
right: 'month,agendaWeek'
},
editable: true,
events: [{
title: 'Aaron Aee',
start: '2016-11-26',
color: '#cfc600'
}, {
title: 'Benny Bee',
start: '2016-11-27',
color: '#cfc600'
}, {
title: 'Charlie Cee',
start: '2016-11-29',
color: '#cfc600'
}, {
title: 'John Dee',
start: '2016-11-21T10:00:00',
end: '2016-11-21T12:00:00'
}, {
title: 'Mike Fee',
start: '2016-11-21T14:00:00',
end: '2016-11-21T16:00:00'
}, {
title: 'Penny Tee',
start: '2016-11-21T09:00:00',
end: '2016-11-21T11:00:00'
}],
events: [
{% for approach in approaching_list %}
{
title: '{{ approach.visit.subject.firstName }} {{ approach.visit.subject.lastName }}',
start: '{{ approach.appDateTime | date:"c" }}',
color: '#cfc600',
subject_id: '{{ approach.visit.subject.id }}',
id: '{{ approach.id }}'
},
{% endfor %}
],
});
});
</script>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment