~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to templates/wlscheduling/find.html

merged trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
   vim:ft=htmldjango
4
4
{% endcomment %}
5
5
 
6
 
{% block content %}
 
6
{% block content_header %}
 
7
    <h1>Scheduling: Other users' playtimes</h1>
 
8
{% endblock %}
 
9
 
 
10
{% block content_main %}
7
11
<script type="text/javascript">
8
12
document.addEventListener('DOMContentLoaded', function(){ 
9
13
    addTimeZoneWarningIfNeeded();
10
14
    addOtherUsersAvailabilities();
11
15
}, false);
12
16
</script>
13
 
 
14
17
<div class="blogEntry">
15
 
    <h1>Times other players are available</h1>
16
18
    {% include "wlscheduling/timezone-msg.html" %}
17
19
    <div id="other-users-wrapper"></div>
18
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
26
 
25
27
<!-- Div to send django data to js file -->
26
28
<div id="django-data" user-time-zone="{{user.wlprofile.time_zone}}" users-to-fill="{{other_users_availabilities}}"></div>
27
 
{% endblock %}
 
 
b'\\ No newline at end of file'
 
29
{% endblock %}