mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2025-02-11 08:21:20 +00:00
Linting
Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
This commit is contained in:
parent
4ea70e5ab9
commit
8777c562dd
@ -447,10 +447,8 @@ class DrawConsumer(AsyncJsonWebsocketConsumer):
|
|||||||
td2.passage_index = current_passage_index
|
td2.passage_index = current_passage_index
|
||||||
if len(round2_pools) == 1 and len(tds) == 5:
|
if len(round2_pools) == 1 and len(tds) == 5:
|
||||||
# Exchange teams 1 and 5 if there is only one pool with 5 teams
|
# Exchange teams 1 and 5 if there is only one pool with 5 teams
|
||||||
if i == 0:
|
if i == 0 or i == 4:
|
||||||
td2.passage_index = 4
|
td2.passage_index = 4 - i
|
||||||
elif i == 4:
|
|
||||||
td2.passage_index = 0
|
|
||||||
current_passage_index += 1
|
current_passage_index += 1
|
||||||
await td2.asave()
|
await td2.asave()
|
||||||
|
|
||||||
|
@ -7,17 +7,15 @@ import re
|
|||||||
from typing import Iterable
|
from typing import Iterable
|
||||||
|
|
||||||
from crispy_forms.helper import FormHelper
|
from crispy_forms.helper import FormHelper
|
||||||
from crispy_forms.layout import Div, Submit, Field
|
from crispy_forms.layout import Div, Field, Submit
|
||||||
from django import forms
|
from django import forms
|
||||||
from django.contrib.auth.models import User
|
from django.contrib.auth.models import User
|
||||||
from django.core.exceptions import ValidationError
|
from django.core.exceptions import ValidationError
|
||||||
from django.core.validators import FileExtensionValidator
|
from django.core.validators import FileExtensionValidator
|
||||||
from django.db.models import CharField, Value
|
|
||||||
from django.db.models.functions import Concat
|
|
||||||
from django.utils.translation import gettext_lazy as _
|
from django.utils.translation import gettext_lazy as _
|
||||||
from pypdf import PdfReader
|
from pypdf import PdfReader
|
||||||
|
|
||||||
from registration.models import VolunteerRegistration
|
from registration.models import VolunteerRegistration
|
||||||
|
|
||||||
from .models import Note, Participation, Passage, Pool, Solution, Synthesis, Team, Tournament
|
from .models import Note, Participation, Passage, Pool, Solution, Synthesis, Team, Tournament
|
||||||
|
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ from django.conf import settings
|
|||||||
from django.core.exceptions import ValidationError
|
from django.core.exceptions import ValidationError
|
||||||
from django.core.validators import MaxValueValidator, MinValueValidator, RegexValidator
|
from django.core.validators import MaxValueValidator, MinValueValidator, RegexValidator
|
||||||
from django.db import models
|
from django.db import models
|
||||||
from django.db.models import F, Index, Q
|
from django.db.models import Index
|
||||||
from django.urls import reverse_lazy
|
from django.urls import reverse_lazy
|
||||||
from django.utils import timezone
|
from django.utils import timezone
|
||||||
from django.utils.crypto import get_random_string
|
from django.utils.crypto import get_random_string
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# Copyright (C) 2020 by Animath
|
# Copyright (C) 2020 by Animath
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
from django.urls import reverse_lazy
|
|
||||||
from django.utils import formats
|
from django.utils import formats
|
||||||
from django.utils.safestring import mark_safe
|
from django.utils.safestring import mark_safe
|
||||||
from django.utils.text import format_lazy
|
from django.utils.text import format_lazy
|
||||||
|
@ -12,7 +12,6 @@ from zipfile import ZipFile
|
|||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django.contrib import messages
|
from django.contrib import messages
|
||||||
from django.contrib.auth.mixins import LoginRequiredMixin
|
from django.contrib.auth.mixins import LoginRequiredMixin
|
||||||
from django.contrib.auth.models import User
|
|
||||||
from django.contrib.sites.models import Site
|
from django.contrib.sites.models import Site
|
||||||
from django.core.exceptions import PermissionDenied
|
from django.core.exceptions import PermissionDenied
|
||||||
from django.core.mail import send_mail
|
from django.core.mail import send_mail
|
||||||
@ -816,7 +815,6 @@ class PoolJuryView(VolunteerMixin, FormView, DetailView):
|
|||||||
form_class = AddJuryForm
|
form_class = AddJuryForm
|
||||||
template_name = 'participation/pool_jury.html'
|
template_name = 'participation/pool_jury.html'
|
||||||
|
|
||||||
|
|
||||||
def dispatch(self, request, *args, **kwargs):
|
def dispatch(self, request, *args, **kwargs):
|
||||||
self.object = self.get_object()
|
self.object = self.get_object()
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user