add representation to affiliation

This commit is contained in:
2023-11-15 18:14:35 +00:00
parent 3c387c22c6
commit 178cb9e53f

View File

@@ -131,6 +131,7 @@ class Bill(models.Model):
class Affiliation(models.TextChoices): class Affiliation(models.TextChoices):
VEREIN = "V", "Vereinsbudget" VEREIN = "V", "Vereinsbudget"
OFFICIAL = "B", "Offizielles Budget" OFFICIAL = "B", "Offizielles Budget"
REPRESENTATION = "R", "Bundesvertretung"
affiliation = models.CharField( affiliation = models.CharField(
max_length=1, choices=Affiliation.choices, verbose_name="Abrechnungsbudget" max_length=1, choices=Affiliation.choices, verbose_name="Abrechnungsbudget"