92 lines
2.5 KiB
HTML
92 lines
2.5 KiB
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
|
|
<h4>{{event.name}}</h4>
|
|
<form action="/event/{{event.id}}" method="post"> {% csrf_token %}
|
|
|
|
<div class="table-responsive-lg">
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">#</th>
|
|
{% for datetime, day in morning.items %}
|
|
<td><small>{{ datetime }}</small></td>
|
|
{% endfor %}
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<th scope="row"><small>Morning</small></th>
|
|
{% for datetime, day in morning.items %}
|
|
<td>
|
|
<input id="{{day.0}}" type="checkbox" name="{{day.0}}"/><br>
|
|
{{ day.1 }}
|
|
</td>
|
|
|
|
{% endfor %}
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><small>Afternoon</small></th>
|
|
{% for datetime, day in noon.items %}
|
|
<td>
|
|
<input id="{{day.0}}" type="checkbox" name="{{day.0}}"/><br>
|
|
{{ day.1 }}
|
|
</td>
|
|
{% endfor %}
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><small>Night</small></th>
|
|
{% for datetime, day in night.items %}
|
|
<td>
|
|
<input id="{{day.0}}" type="checkbox" name="{{day.0}}"/><br>
|
|
{{ day.1 }}
|
|
</td>
|
|
{% endfor %}
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<div style="margin-top:10px;">
|
|
<div style="float:left">
|
|
Responses: {{user_responses}} / {{event.participants}}
|
|
</div>
|
|
<div style="float:right">
|
|
<button class="btn btn-success" type="submit">Submit</button>
|
|
</div>
|
|
</div>
|
|
|
|
</form>
|
|
|
|
<div style="clear:both;"></div>
|
|
<hr>
|
|
<div>
|
|
<h4>Best Times</h4>
|
|
{{ no_overlap_message }}
|
|
{% for day, users in best_days.items %}
|
|
<div class="row">
|
|
<div class="col-3" style="border: dotted black 1px;">{{day}}</div>
|
|
<div class="col-4" style="border: dotted black 1px;">{{users}}</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
active_dates = {{ active_dates|safe }};
|
|
if (active_dates) {
|
|
for (let i = 0; i < active_dates.length; i++) {
|
|
document.getElementById(active_dates[i]).checked = true;
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<br><br>
|
|
|
|
|
|
{% endblock %}
|