2017-02-17 16:17:21 +00:00
|
|
|
{% extends 'schedule_base.html' %}
|
2016-08-04 21:03:39 +00:00
|
|
|
|
2017-04-14 21:29:30 +00:00
|
|
|
{% load commonmark %}
|
2017-04-15 17:35:18 +00:00
|
|
|
{% load staticfiles %}
|
|
|
|
|
2017-02-17 16:17:21 +00:00
|
|
|
{% block schedule_content %}
|
2017-04-20 23:34:22 +00:00
|
|
|
|
|
|
|
<div id="schedule-container"></div>
|
|
|
|
|
2017-04-19 21:15:06 +00:00
|
|
|
<script src="{% static "channels/js/websocketbridge.js" %}"></script>
|
|
|
|
<script src="{% static "js/event_instance_websocket.js" %}"></script>
|
|
|
|
|
2017-04-26 22:23:03 +00:00
|
|
|
<script>
|
|
|
|
init(
|
|
|
|
{ 'schedule_timeslot_length_minutes': Number('{{ schedule_timeslot_length_minutes }}')
|
|
|
|
, 'schedule_midnight_offset_hours': Number('{{ schedule_midnight_offset_hours }}')
|
2017-07-08 21:00:54 +00:00
|
|
|
, 'ics_button_href': "{% url 'ics_view' camp_slug=camp.slug %}"
|
2017-04-26 22:23:03 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
</script>
|
|
|
|
|
2017-02-17 16:17:21 +00:00
|
|
|
{% endblock schedule_content %}
|