From f6ae9e640e902ddd4d8ed84b53ec6bbf50594161 Mon Sep 17 00:00:00 2001 From: alpcentaur Date: Mon, 27 Feb 2023 17:09:28 +0000 Subject: [PATCH] added NOT choice, 'nicht stattgefunden', to project status button --- input/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/input/models.py b/input/models.py index ec412d3..dae00e3 100644 --- a/input/models.py +++ b/input/models.py @@ -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)