plateforme-tfjm2/participation/templates/participation/pool_detail.html

107 lines
4.8 KiB
HTML
Raw Normal View History

2021-01-13 16:00:50 +00:00
{% extends "base.html" %}
2021-01-14 13:44:12 +00:00
2021-01-14 18:33:56 +00:00
{% load django_tables2 i18n %}
2021-01-14 13:44:12 +00:00
{% block content %}
<div class="card bg-body shadow">
2021-01-14 13:44:12 +00:00
<div class="card-header text-center">
<h4>{{ pool }}</h4>
</div>
<div class="card-body">
<dl class="row">
2021-01-14 14:59:11 +00:00
<dt class="col-sm-3">{% trans "Tournament:" %}</dt>
2021-01-14 18:23:32 +00:00
<dd class="col-sm-9"><a href="{{ pool.tournament.get_absolute_url }}">{{ pool.tournament }}</a></dd>
2021-01-14 13:44:12 +00:00
2021-01-14 14:59:11 +00:00
<dt class="col-sm-3">{% trans "Round:" %}</dt>
<dd class="col-sm-9">{{ pool.get_round_display }}</dd>
2021-01-14 13:44:12 +00:00
<dt class="col-sm-3">{% trans "Letter:" %}</dt>
<dd class="col-sm-9">{{ pool.get_letter_display }}</dd>
2021-01-14 14:59:11 +00:00
<dt class="col-sm-3">{% trans "Teams:" %}</dt>
<dd class="col-sm-9">
2021-01-14 13:44:12 +00:00
{% for participation in pool.participations.all %}
2023-02-20 12:42:36 +00:00
<a href="{{ participation.get_absolute_url }}">{{ participation.team }}{% if not forloop.last %}, {% endif %}</a>
2021-01-14 13:44:12 +00:00
{% endfor %}
</dd>
2021-01-14 14:59:11 +00:00
<dt class="col-sm-3">{% trans "Juries:" %}</dt>
<dd class="col-sm-9">
{{ pool.juries.all|join:", " }}
<a class="badge rounded-pill text-bg-info" href="{% url 'participation:pool_add_jurys' pk=pool.pk %}">
<i class="fas fa-plus"></i> {% trans "Add jurys" %}
</a>
</dd>
2021-01-14 14:59:11 +00:00
<dt class="col-sm-3">{% trans "Defended solutions:" %}</dt>
<dd class="col-sm-9">
{% for passage in pool.passages.all %}
2023-02-20 12:42:36 +00:00
<a href="{{ passage.defended_solution.file.url }}">{{ passage.defended_solution }}{% if not forloop.last %}, {% endif %}</a>
2021-01-14 14:59:11 +00:00
{% endfor %}
</dd>
2021-01-21 21:32:43 +00:00
<dt class="col-sm-3">{% trans "BigBlueButton link:" %}</dt>
<dd class="col-sm-9">{{ pool.bbb_url|urlize }}</dd>
2021-01-14 13:44:12 +00:00
</dl>
2021-01-14 18:23:32 +00:00
<div class="card bg-body shadow">
2021-01-14 18:23:32 +00:00
<div class="card-header text-center">
<h5>{% trans "Ranking" %}</h5>
</div>
<div class="card-body">
<ul>
{% for participation, note in notes %}
2021-04-10 12:38:15 +00:00
<li><strong>{{ participation.team }} :</strong> {{ note|floatformat }}</li>
2021-01-14 18:23:32 +00:00
{% endfor %}
</ul>
</div>
</div>
2021-01-14 13:44:12 +00:00
</div>
2021-04-09 12:28:36 +00:00
{% if user.registration.is_volunteer %}
2021-01-14 13:44:12 +00:00
<div class="card-footer text-center">
2023-02-20 13:52:25 +00:00
<button class="btn btn-success" data-bs-toggle="modal" data-bs-target="#addPassageModal">{% trans "Add passage" %}</button>
<button class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#updatePoolModal">{% trans "Update" %}</button>
<button class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#updateTeamsModal">{% trans "Update teams" %}</button>
<button class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#uploadNotesModal">{% trans "Upload notes from a CSV file" %}</button>
2021-01-14 13:44:12 +00:00
</div>
{% endif %}
</div>
2021-01-14 18:33:56 +00:00
<hr>
<h3>{% trans "Passages" %}</h3>
{% render_table passages %}
2021-01-14 14:59:11 +00:00
{% 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" %}
2021-01-14 13:44:12 +00:00
{% 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" %}
2022-05-15 10:23:17 +00:00
{% trans "Upload notes" as modal_title %}
{% trans "Upload" as modal_button %}
{% url "participation:pool_upload_notes" pk=pool.pk as modal_action %}
{% include "base_modal.html" with modal_id="uploadNotes" modal_button_type="success" modal_enctype="multipart/form-data" %}
2021-01-14 13:44:12 +00:00
{% endblock %}
{% block extrajavascript %}
<script>
document.addEventListener('DOMContentLoaded', () => {
initModal("updatePool", "{% url "participation:pool_update" pk=pool.pk %}")
initModal("updateTeams", "{% url "participation:pool_update_teams" pk=pool.pk %}")
initModal("addPassage", "{% url "participation:passage_create" pk=pool.pk %}")
initModal("uploadNotes", "{% url "participation:pool_upload_notes" pk=pool.pk %}")
})
2021-01-14 13:44:12 +00:00
</script>
{% endblock %}