Use a checkbox widget to select tournament organizers

This commit is contained in:
Yohann D'ANELLO 2021-01-19 01:19:18 +01:00
parent 4821b090ae
commit e4fa6c0321
Signed by: ynerant
GPG Key ID: 3A75C55819C8CF85
2 changed files with 2 additions and 1 deletions

View File

@ -109,6 +109,7 @@ class TournamentForm(forms.ModelForm):
format=formats.get_format_lazy(format_type="DATETIME_INPUT_FORMATS", use_l10n=True)[0])
self.fields["syntheses_second_phase_limit"].widget = DateTimePickerInput(
format=formats.get_format_lazy(format_type="DATETIME_INPUT_FORMATS", use_l10n=True)[0])
self.fields["organizers"].widget = forms.CheckboxSelectMultiple()
class Meta:
model = Tournament

View File

@ -47,7 +47,7 @@
</dl>
</div>
{% if user.registration.isadmin or user.registration in tournament.organizers.all %}
{% if user.registration.is_admin or user.registration in tournament.organizers.all %}
<div class="card-footer text-center">
<a href="{% url "participation:tournament_update" pk=tournament.pk %}"><button class="btn btn-secondary">{% trans "Edit tournament" %}</button></a>
</div>