|
|
@@ -146,7 +146,7 @@ class Product(models.Model):
|
|
|
beschreibung = TextField( 'Projektbeschreibung', max_length = 2048, help_text="Beschreibung des Projektes", null = True, blank=True )
|
|
|
learning = CharField( 'Learning', max_length = 256, help_text="Learning", null = True, blank=True )
|
|
|
gruendungsjahr = IntegerField('Gründungsjahr', help_text="Gründungsjahr des Projekts", validators=[MinValueValidator(0), MaxValueValidator(9999)], null = True, blank=True )
|
|
|
- betriebgenommen = IntegerField('in Betrieb genommen in Jahr', help_text="Wann wurde das Projekt in Betrieb genommen?", validators=[MinValueValidator(0), MaxValueValidator(9999)], null = True, blank=True )
|
|
|
+ betriebgenommen = IntegerField('in Betrieb genommen im Jahr', help_text="Wann wurde das Projekt in Betrieb genommen?", validators=[MinValueValidator(0), MaxValueValidator(9999)], null = True, blank=True )
|
|
|
status = CharField( 'Status', max_length = 3, choices=STATUS, default='ENT', help_text="Was ist der Status des Projektes" , null = True, blank=True )
|
|
|
adresse = CharField( 'Adresse', max_length = 256, help_text="Adresse des Projektes", null = True, blank=True )
|
|
|
plz = CharField ( 'Adresse', max_length = 256, help_text="PLZ des Projektes", null = True, blank=True )
|
|
|
@@ -155,10 +155,10 @@ class Product(models.Model):
|
|
|
website = URLField ( 'Website', max_length = 2048, help_text="Website des Projektes", null = True, blank=True )
|
|
|
email = EmailField ( 'Email', max_length = 2048, help_text="Email des Projektes", null = True, blank=True )
|
|
|
frei = CharField ( 'Platz frei', max_length = 4, choices=FREI, default='NEIN', help_text="Gibt es freie Plätze?", null = True, blank=False )
|
|
|
- kfrei = CharField ( 'Platz frei - Kommentar', max_length = 2048, help_text="Kommentar", null = True, blank=True )
|
|
|
+ kfrei = CharField ( 'Inseratstext - Platzfrei', max_length = 2048, help_text="Inseratstext - Platzfrei", null = True, blank=True )
|
|
|
rechtsform = CharField ( 'Rechtsform', max_length = 32, help_text="Rechtsform des Projektes", null = True, blank=True )
|
|
|
orga = CharField ( 'Organisationsform', max_length = 256, help_text="Organisationsform des Projektes.", null = True, blank=True )
|
|
|
- mitmachen = BooleanField( 'Mitmachen möglich', default=False, help_text="Kann jemand mitmachen?", blank=False )
|
|
|
+ mitmachen = BooleanField( 'Begleitet von RealityLab', default=False, help_text="Begleitet von RealityLab?", blank=False )
|
|
|
terms = BooleanField(help_text="", null=True)
|
|
|
edit = BooleanField( default=True, help_text="", blank=False )
|
|
|
public = BooleanField( default=False, help_text="", blank=False )
|
|
|
@@ -323,7 +323,7 @@ class Wohnprojekt(Product):
|
|
|
return "Wohnprojekt"
|
|
|
|
|
|
eigentum = CharField ( 'Rechtliche Konstruktion', max_length = 6, choices=EIGENTUM, default='GEMIET', help_text="Rechtliche Konstruktion", null = True, blank=True )
|
|
|
- inseratstext = TextField ( 'Angebot', max_length = 1024, help_text="Inseratstext", null = True, blank=True )
|
|
|
+ inseratstext = TextField ( 'Inseratstext für Raumangebote', max_length = 1024, help_text="Inseratstext", null = True, blank=True )
|
|
|
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 )
|
|
|
wohnbaufoerderung = CharField ( 'Wohnbauförderung', max_length = 1024, choices=WOHNBAUFOERDERUNG, help_text="Wohnbauförderung", null = True, blank=True )
|