|
@@ -455,8 +455,8 @@ class Wohnprojekt(Product):
|
|
|
altneu = CharField ( 'Altbau/Neubau', max_length = 4, choices=ALTNEU, help_text="Altbau/Neubau", null = True, blank=False )
|
|
altneu = CharField ( 'Altbau/Neubau', max_length = 4, choices=ALTNEU, help_text="Altbau/Neubau", null = True, blank=False )
|
|
|
schwerpunkt = CharField ( 'Inhaltlicher Schwerpunkt', max_length = 1024, help_text="Inhaltlicher Schwerpunkt", null = True, blank=True )
|
|
schwerpunkt = CharField ( 'Inhaltlicher Schwerpunkt', max_length = 1024, help_text="Inhaltlicher Schwerpunkt", null = True, blank=True )
|
|
|
wohnbaufoerderung = CharField ( 'Wohnbauförderung', max_length = 1024, choices=WOHNBAUFOERDERUNG, help_text="Wohnbauförderung", null = True, blank=True )
|
|
wohnbaufoerderung = CharField ( 'Wohnbauförderung', max_length = 1024, choices=WOHNBAUFOERDERUNG, help_text="Wohnbauförderung", null = True, blank=True )
|
|
|
- artmodell = TextField ( 'Art der Modells', max_length = 2048, choices=ARTMODELL, help_text="Art der Modells", null = True, blank=True )
|
|
|
|
|
- bautraeger = TextField ( 'Bauträger', max_length = 2048, choices=BAUTRAEGER, help_text="Bauträger", null = True, blank=True )
|
|
|
|
|
|
|
+ artmodell = TextField ( 'Art der Modells', max_length = 2048, help_text="Art der Modells", null = True, blank=True )
|
|
|
|
|
+ bautraeger = TextField ( 'Bauträger', max_length = 2048, 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 )
|
|
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 )
|
|
akinder = IntegerField( 'Anzahl an Kinder', help_text="Anzahl an Kinder", validators=[MinValueValidator(0), MaxValueValidator(9999)], null = True, blank=True )
|
|
|
@property
|
|
@property
|
|
@@ -478,9 +478,9 @@ class Wohnprojekt(Product):
|
|
|
kraumangebot = CharField ( 'Raumangebot nach Außen - Sonstiges', max_length = 1024, help_text="Raumangebot nach Außen - Sonstiges", null = True, blank=True )
|
|
kraumangebot = CharField ( 'Raumangebot nach Außen - Sonstiges', max_length = 1024, help_text="Raumangebot nach Außen - Sonstiges", null = True, blank=True )
|
|
|
parbeiten = IntegerField ( 'Wie viele Personen arbeiten im Haus', help_text="Wie viele Personen arbeiten im Haus", validators=[MinValueValidator(0), MaxValueValidator(9999)], null = True, blank=True )
|
|
parbeiten = IntegerField ( 'Wie viele Personen arbeiten im Haus', help_text="Wie viele Personen arbeiten im Haus", validators=[MinValueValidator(0), MaxValueValidator(9999)], null = True, blank=True )
|
|
|
karbeiten = CharField ( 'Wie viele Personen arbeiten im Haus - Kommentar', max_length = 1024, help_text="Kommentar", null = True, blank=True )
|
|
karbeiten = CharField ( 'Wie viele Personen arbeiten im Haus - Kommentar', max_length = 1024, help_text="Kommentar", null = True, blank=True )
|
|
|
- bauweise = CharField ( 'Bauweise', max_length = 64, choices=BAUWEISE, help_text="Bauweise", null = True, blank=True )
|
|
|
|
|
- zielgruppen = CharField ( 'Besondere Zielgruppen', max_length = 64, choices=ZIELGRUPPEN, help_text="Besondere Zielgruppen", null = True, blank=True )
|
|
|
|
|
- gprojekte = CharField ( 'Gemeinschaftliche Projekte', max_length = 64, choices=GPROJEKTE, help_text="Gemeinschaftliche Projekte", null = True, blank=True )
|
|
|
|
|
|
|
+ bauweise = CharField ( 'Bauweise', max_length = 64, help_text="Bauweise", null = True, blank=True )
|
|
|
|
|
+ zielgruppen = CharField ( 'Besondere Zielgruppen', max_length = 64, help_text="Besondere Zielgruppen", null = True, blank=True )
|
|
|
|
|
+ gprojekte = CharField ( 'Gemeinschaftliche Projekte', max_length = 64, help_text="Gemeinschaftliche Projekte", null = True, blank=True )
|
|
|
oekologie = CharField ( 'Ökologie', max_length = 1024, help_text="Ökologie", null = True, blank=True )
|
|
oekologie = CharField ( 'Ökologie', max_length = 1024, help_text="Ökologie", null = True, blank=True )
|
|
|
freiraumangebote = CharField ( 'Freiraumangebote', max_length = 64, choices=FREIANGEBOT, help_text="Freiraumangebote", null = True, blank=False )
|
|
freiraumangebote = CharField ( 'Freiraumangebote', max_length = 64, choices=FREIANGEBOT, help_text="Freiraumangebote", null = True, blank=False )
|
|
|
gaestwohnungen = IntegerField ( 'Anzahl an Gästewohnungen', help_text="Anzahl an Gästewohnungen", validators=[MinValueValidator(0)], default = 0 )
|
|
gaestwohnungen = IntegerField ( 'Anzahl an Gästewohnungen', help_text="Anzahl an Gästewohnungen", validators=[MinValueValidator(0)], default = 0 )
|