106 lines
4.5 KiB
HTML
106 lines
4.5 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% load django_tables2 i18n %}
|
|
|
|
{% block content %}
|
|
<div class="card bg-light shadow">
|
|
<div class="card-header text-center">
|
|
<h4>{{ pool }}</h4>
|
|
</div>
|
|
<div class="card-body">
|
|
<dl class="row">
|
|
<dt class="col-sm-3">{% trans "Tournament:" %}</dt>
|
|
<dd class="col-sm-9"><a href="{{ pool.tournament.get_absolute_url }}">{{ pool.tournament }}</a></dd>
|
|
|
|
<dt class="col-sm-3">{% trans "Round:" %}</dt>
|
|
<dd class="col-sm-9">{{ pool.get_round_display }}</dd>
|
|
|
|
<dt class="col-sm-3">{% trans "Teams:" %}</dt>
|
|
<dd class="col-sm-9">
|
|
{% for participation in pool.participations.all %}
|
|
<a href="{{ participation.get_absolute_url }}" data-turbolinks="false">{{ participation.team }}{% if not forloop.last %}, {% endif %}</a>
|
|
{% endfor %}
|
|
</dd>
|
|
|
|
<dt class="col-sm-3">{% trans "Juries:" %}</dt>
|
|
<dd class="col-sm-9">{{ pool.juries.all|join:", " }}</dd>
|
|
|
|
<dt class="col-sm-3">{% trans "Defended solutions:" %}</dt>
|
|
<dd class="col-sm-9">
|
|
{% for passage in pool.passages.all %}
|
|
<a href="{{ passage.defended_solution.file.url }}" data-turbolinks="false">{{ passage.defended_solution }}{% if not forloop.last %}, {% endif %}</a>
|
|
{% endfor %}
|
|
</dd>
|
|
|
|
<dt class="col-sm-3">{% trans "BigBlueButton link:" %}</dt>
|
|
<dd class="col-sm-9"><a href="{{ pool.bbb_url }}">{{ pool.bbb_url }}</a></dd>
|
|
</dl>
|
|
|
|
<div class="card bg-light shadow">
|
|
<div class="card-header text-center">
|
|
<h5>{% trans "Ranking" %}</h5>
|
|
</div>
|
|
<div class="card-body">
|
|
<ul>
|
|
{% for participation, note in notes %}
|
|
<li><strong>{{ participation.team }} :</strong> {{ note }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% if user.registration.is_admin %}
|
|
<div class="card-footer text-center">
|
|
<button class="btn btn-success" data-toggle="modal" data-target="#addPassageModal">{% trans "Add passage" %}</button>
|
|
<button class="btn btn-primary" data-toggle="modal" data-target="#updatePoolModal">{% trans "Update" %}</button>
|
|
<button class="btn btn-primary" data-toggle="modal" data-target="#updateTeamsModal">{% trans "Update teams" %}</button>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<hr>
|
|
|
|
<h3>{% trans "Passages" %}</h3>
|
|
|
|
{% render_table passages %}
|
|
|
|
{% trans "Add passage" as modal_title %}
|
|
{% trans "Add" as modal_button %}
|
|
{% url "participation:passage_create" pk=pool.pk as modal_action %}
|
|
{% include "base_modal.html" with modal_id="addPassage" modal_button_type="success" %}
|
|
|
|
{% trans "Update pool" as modal_title %}
|
|
{% trans "Update" as modal_button %}
|
|
{% url "participation:pool_update" pk=pool.pk as modal_action %}
|
|
{% include "base_modal.html" with modal_id="updatePool" %}
|
|
|
|
{% trans "Update teams" as modal_title %}
|
|
{% trans "Update" as modal_button %}
|
|
{% url "participation:pool_update_teams" pk=pool.pk as modal_action %}
|
|
{% include "base_modal.html" with modal_id="updateTeams" %}
|
|
{% endblock %}
|
|
|
|
{% block extrajavascript %}
|
|
<script>
|
|
$(document).ready(function () {
|
|
$('button[data-target="#updatePoolModal"]').click(function() {
|
|
let modalBody = $("#updatePoolModal div.modal-body");
|
|
if (!modalBody.html().trim())
|
|
modalBody.load("{% url "participation:pool_update" pk=pool.pk %} #form-content")
|
|
});
|
|
|
|
$('button[data-target="#updateTeamsModal"]').click(function() {
|
|
let modalBody = $("#updateTeamsModal div.modal-body");
|
|
if (!modalBody.html().trim())
|
|
modalBody.load("{% url "participation:pool_update_teams" pk=pool.pk %} #form-content")
|
|
});
|
|
|
|
$('button[data-target="#addPassageModal"]').click(function() {
|
|
let modalBody = $("#addPassageModal div.modal-body");
|
|
if (!modalBody.html().trim())
|
|
modalBody.load("{% url "participation:passage_create" pk=pool.pk %} #form-content")
|
|
});
|
|
});
|
|
</script>
|
|
{% endblock %}
|