You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
538 B
20 lines
538 B
from django.db import models
|
|
|
|
class PlayerPaymentType(models.IntegerChoices):
|
|
CASH = 0, 'Cash'
|
|
LYDIA = 1, 'Lydia'
|
|
GIFT = 2, 'Gift'
|
|
CHECK = 3, 'Check'
|
|
PAYLIB = 4, 'Paylib'
|
|
BANK_WIRE = 5, 'Bank Wire'
|
|
CLUB_HOUSE = 6, 'Club House'
|
|
CREDIT_CARD = 7, 'Credit Card'
|
|
FORFEIT = 8, 'Forfeit'
|
|
|
|
class PlayerDataSource(models.IntegerChoices):
|
|
FRENCH_FEDERATION = 0, 'French Federation'
|
|
BEACH_PADEL = 1, 'Beach Padel'
|
|
|
|
class PlayerSexType(models.IntegerChoices):
|
|
FEMALE = 0, 'Female'
|
|
MALE = 1, 'Male'
|
|
|