1
0
Fork 0

added NOT choice, 'nicht stattgefunden', to project status button

This commit is contained in:
corsaronero 2022-11-08 12:55:54 +00:00
parent 792f8df588
commit 29d20e040e
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ class Project(Volunteer):
# the following Fields are not supposed to be edited by users
pid = models.CharField(max_length=15, null=True, blank=True)
end_mail_send = models.BooleanField(null=True)
status = models.CharField(max_length=3,choices=(('RUN', 'läuft'),('END','beendet')),default='RUN')
status = models.CharField(max_length=3,choices=(('RUN', 'läuft'),('END','beendet'),('NOT','nicht stattgefunden')),default='RUN')
persons = models.IntegerField(default=1)
finance_id = models.CharField(max_length=15, null= True, blank=True)
project_of_year = models.IntegerField(default=0)