Unterstützung für Lose

This commit is contained in:
tegwick 2026-05-14 02:57:27 +02:00
parent e4eb5bc368
commit f6af101933
8 changed files with 105 additions and 1 deletions

View file

@ -49,6 +49,7 @@ class Ausschreibung(FlexibleModel):
vergabenummer = models.CharField(max_length=100, blank=True)
vergabeart = models.CharField(max_length=30, choices=VERGABEART_CHOICES, blank=True)
rechtsgrundlage = models.CharField(max_length=20, choices=RECHTSGRUNDLAGE_CHOICES, blank=True)
rechtsgrundlage_details = models.TextField(blank=True)
status = models.PositiveSmallIntegerField(choices=STATUS_CHOICES, default=1)
teilnahmeentscheidung = models.CharField(
max_length=20, choices=TEILNAHME_CHOICES, default='offen'