1
{% extends "wlscheduling/base.html" %}
6
{% block content_header %}
7
<h1>Scheduling: Other users' playtimes</h1>
10
{% block content_main %}
11
<script type="text/javascript">
12
document.addEventListener('DOMContentLoaded', function(){
13
addTimeZoneWarningIfNeeded();
14
addOtherUsersAvailabilities();
17
<div class="blogEntry">
18
{% include "wlscheduling/timezone-msg.html" %}
19
<div id="other-users-wrapper"></div>
20
<div id="no-user-to-display" hidden="hidden">Sorry currently there isn't anybody who has scheduled a gaming session. Don't hesitate to signal to other when you'll be available <a href="{% url 'scheduling_scheduling' %}">here</a></div>
24
<!-- Templates for the js script -->
25
{% include "wlscheduling/other-users.html" %}
27
<!-- Div to send django data to js file -->
28
<div id="django-data" user-time-zone="{{user.wlprofile.time_zone}}" users-to-fill="{{other_users_availabilities}}"></div>