2020-12-27 10:49:54 +00:00
|
|
|
# Copyright (C) 2020 by Animath
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
|
|
from django.contrib import admin
|
2021-01-21 21:22:21 +00:00
|
|
|
from django.contrib.admin import ModelAdmin
|
2023-04-03 17:13:15 +00:00
|
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
from polymorphic.admin import PolymorphicChildModelAdmin, PolymorphicChildModelFilter, PolymorphicParentModelAdmin
|
2020-12-27 10:49:54 +00:00
|
|
|
|
2023-04-05 15:52:46 +00:00
|
|
|
from .models import CoachRegistration, ParticipantRegistration, Payment, Registration, \
|
2023-04-03 17:13:15 +00:00
|
|
|
StudentRegistration, VolunteerRegistration
|
2020-12-27 10:49:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
@admin.register(Registration)
|
|
|
|
class RegistrationAdmin(PolymorphicParentModelAdmin):
|
2023-02-19 23:23:18 +00:00
|
|
|
child_models = (StudentRegistration, CoachRegistration, VolunteerRegistration,)
|
2023-04-03 17:13:15 +00:00
|
|
|
list_display = ('user', 'first_name', 'last_name', 'type', 'email_confirmed',)
|
|
|
|
list_filter = (PolymorphicChildModelFilter, 'email_confirmed',)
|
|
|
|
search_fields = ('user__first_name', 'user__last_name', 'user__email',)
|
2020-12-27 10:49:54 +00:00
|
|
|
polymorphic_list = True
|
|
|
|
|
2023-04-03 17:13:15 +00:00
|
|
|
@admin.display(description=_('first name'), ordering='user__first_name')
|
|
|
|
def first_name(self, record):
|
|
|
|
return record.user.first_name
|
|
|
|
|
|
|
|
@admin.display(description=_('last name'), ordering='user__last_name')
|
|
|
|
def last_name(self, record):
|
|
|
|
return record.user.last_name
|
|
|
|
|
2023-04-05 15:52:46 +00:00
|
|
|
|
2023-04-03 17:13:15 +00:00
|
|
|
@admin.register(ParticipantRegistration)
|
|
|
|
class ParticipantRegistrationAdmin(PolymorphicChildModelAdmin):
|
|
|
|
list_display = ('user', 'first_name', 'last_name', 'type', 'team', 'email_confirmed',)
|
|
|
|
list_filter = ('email_confirmed',)
|
|
|
|
search_fields = ('user__first_name', 'user__last_name', 'user__email',)
|
|
|
|
autocomplete_fields = ('user', 'team',)
|
|
|
|
|
|
|
|
@admin.display(description=_('first name'), ordering='user__first_name')
|
|
|
|
def first_name(self, record):
|
|
|
|
return record.user.first_name
|
|
|
|
|
|
|
|
@admin.display(description=_('last name'), ordering='user__last_name')
|
|
|
|
def last_name(self, record):
|
|
|
|
return record.user.last_name
|
|
|
|
|
2020-12-27 10:49:54 +00:00
|
|
|
|
|
|
|
@admin.register(StudentRegistration)
|
|
|
|
class StudentRegistrationAdmin(PolymorphicChildModelAdmin):
|
2023-04-03 17:13:15 +00:00
|
|
|
list_display = ('user', 'first_name', 'last_name', 'team', 'email_confirmed',)
|
|
|
|
list_filter = ('email_confirmed',)
|
|
|
|
search_fields = ('user__first_name', 'user__last_name', 'user__email',)
|
|
|
|
autocomplete_fields = ('user', 'team',)
|
|
|
|
|
|
|
|
@admin.display(description=_('first name'), ordering='user__first_name')
|
|
|
|
def first_name(self, record):
|
|
|
|
return record.user.first_name
|
|
|
|
|
|
|
|
@admin.display(description=_('last name'), ordering='user__last_name')
|
|
|
|
def last_name(self, record):
|
|
|
|
return record.user.last_name
|
2020-12-27 10:49:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
@admin.register(CoachRegistration)
|
|
|
|
class CoachRegistrationAdmin(PolymorphicChildModelAdmin):
|
2023-04-03 17:13:15 +00:00
|
|
|
list_display = ('user', 'first_name', 'last_name', 'team', 'email_confirmed',)
|
|
|
|
list_filter = ('email_confirmed',)
|
|
|
|
search_fields = ('user__first_name', 'user__last_name', 'user__email',)
|
|
|
|
autocomplete_fields = ('user', 'team',)
|
|
|
|
|
|
|
|
@admin.display(description=_('first name'), ordering='user__first_name')
|
|
|
|
def first_name(self, record):
|
|
|
|
return record.user.first_name
|
|
|
|
|
|
|
|
@admin.display(description=_('last name'), ordering='user__last_name')
|
|
|
|
def last_name(self, record):
|
|
|
|
return record.user.last_name
|
2020-12-27 10:49:54 +00:00
|
|
|
|
|
|
|
|
2023-02-19 23:23:18 +00:00
|
|
|
@admin.register(VolunteerRegistration)
|
|
|
|
class VolunteerRegistrationAdmin(PolymorphicChildModelAdmin):
|
2023-04-03 17:13:15 +00:00
|
|
|
list_display = ('user', 'first_name', 'last_name', 'tournaments', 'email_confirmed',)
|
|
|
|
list_filter = ('organized_tournaments', 'email_confirmed',)
|
|
|
|
search_fields = ('user__first_name', 'user__last_name', 'user__email',)
|
|
|
|
autocomplete_fields = ('user',)
|
|
|
|
|
|
|
|
@admin.display(description=_('first name'), ordering='user__first_name')
|
|
|
|
def first_name(self, record):
|
|
|
|
return record.user.first_name
|
|
|
|
|
|
|
|
@admin.display(description=_('last name'), ordering='user__last_name')
|
|
|
|
def last_name(self, record):
|
|
|
|
return record.user.last_name
|
|
|
|
|
|
|
|
@admin.display(description=_("tournaments"))
|
|
|
|
def tournaments(self, record):
|
|
|
|
return ', '.join(tr.name for tr in record.interesting_tournaments) or None
|
2021-01-21 21:22:21 +00:00
|
|
|
|
|
|
|
|
|
|
|
@admin.register(Payment)
|
|
|
|
class PaymentAdmin(ModelAdmin):
|
2023-04-05 08:44:27 +00:00
|
|
|
list_display = ('registration', 'registration_type', 'type', 'valid', )
|
2021-01-21 21:22:21 +00:00
|
|
|
search_fields = ('registration__user__last_name', 'registration__user__first_name', 'registration__user__email',)
|
2023-04-05 08:44:27 +00:00
|
|
|
list_filter = ('registration__team__participation__valid', 'type', 'type', 'valid',)
|
2023-04-03 17:13:15 +00:00
|
|
|
autocomplete_fields = ('registration',)
|
2023-04-05 08:44:27 +00:00
|
|
|
|
|
|
|
@admin.display(description=_('registration type'), ordering='registration__polymorphic_ctype')
|
|
|
|
def registration_type(self, record: Payment):
|
|
|
|
return record.registration.get_real_instance().type
|