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

118 lines
5.2 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-light shadow">
<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
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 %}
<a href="{{ participation.get_absolute_url }}" data-turbolinks="false">{{ participation.team }}{% if not forloop.last %}, {% endif %}</a>
{% 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:", " }}</dd>
<dt class="col-sm-3">{% trans "Defended solutions:" %}</dt>
<dd class="col-sm-9">
{% for passage in pool.passages.all %}
2021-01-14 18:23:32 +00:00
<a href="{{ passage.defended_solution.file.url }}" data-turbolinks="false">{{ 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-light shadow">
<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">
2021-01-14 14:59:11 +00:00
<button class="btn btn-success" data-toggle="modal" data-target="#addPassageModal">{% trans "Add passage" %}</button>
2021-01-14 13:44:12 +00:00
<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>
2022-05-15 10:23:17 +00:00
<button class="btn btn-primary" data-toggle="modal" data-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).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")
});
2021-01-14 14:59:11 +00:00
$('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")
});
2022-05-15 10:23:17 +00:00
$('button[data-target="#uploadNotesModal"]').click(function() {
let modalBody = $("#uploadNotesModal div.modal-body");
if (!modalBody.html().trim())
modalBody.load("{% url "participation:pool_upload_notes" pk=pool.pk %} #form-content")
});
2021-01-14 13:44:12 +00:00
});
</script>
{% endblock %}