chengler / kinowebsite

0 stars 0 forks source link

feat veranstalltung eintritt und einlass #39

Open chengler opened 2 months ago

chengler commented 2 months ago

der Eintritt soll zur Veranstaltung der Einlass auch

chengler commented 2 months ago

erweiterung von class Event(models.Model):

https://stackoverflow.com/questions/1139393/what-is-the-best-django-model-field-to-use-to-represent-a-us-dollar-amount

einlass = models.TimeField(auto_now=False, null=True) eintritt = MoneyField( decimal_places=2, default=5, default_currency="EUR", max_digits=5, ) ermaessigt = MoneyField( decimal_places=2, default=3, default_currency="EUR", max_digits=5, ) kein_eintritt = models.BooleanField(False)

chengler commented 2 months ago

also drei neue Felder kein_eintritt zum deaktivieren der Eintritt anzeige und dafür alternativtext!

chengler commented 2 months ago
kein_eintritt = models.TextField(blank=True, default="") # dieser text wird statt der Eintritt Info gezeigt