Juan Carlos vor 5 Jahren
Ursprung
Commit
20a676b6f4
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 2 2
      marktplatz/models.py

+ 2 - 2
marktplatz/models.py

@@ -431,8 +431,8 @@ class Wohnprojekt(Product):
     altneu            = CharField    ( 'Altbau/Neubau',  max_length = 4, choices=ALTNEU, help_text="Altbau/Neubau", null = True, blank=False )
     schwerpunkt       = CharField    ( 'Inhaltlicher Schwerpunkt',   max_length = 2048,  help_text="Inhaltlicher Schwerpunkt", null = True, blank=True )
     wohnbaufoerderung = CharField    ( 'Wohnbauförderung',    max_length = 4096,   choices=WOHNBAUFOERDERUNG, help_text="Wohnbauförderung", null = True, blank=True )
-    artmodell         = CharField    ( 'Art der Modells',    max_length = 10000,   choices=ARTMODELL, help_text="Art der Modells", null = True, blank=True )
-    bautraeger        = CharField    ( 'Bauträger',    max_length = 4096,   choices=BAUTRAEGER, help_text="Bauträger", null = True, blank=True )
+    artmodell         = TextField    ( 'Art der Modells',    max_length = 10000,   choices=ARTMODELL, help_text="Art der Modells", null = True, blank=True )
+    bautraeger        = TextField    ( 'Bauträger',    max_length = 4096,   choices=BAUTRAEGER, help_text="Bauträger", null = True, blank=True )
     aerwachsene       = IntegerField( 'Anzahl an Erwachsenen', help_text="Anzahl an Erwachsenen", validators=[MinValueValidator(0), MaxValueValidator(9999)], null = True, blank=True )
     akinder           = IntegerField( 'Anzahl an Kinder', help_text="Anzahl an Kinder", validators=[MinValueValidator(0), MaxValueValidator(9999)], null = True, blank=True )
     @property