Registrations: view to uncheck apply_reduced_fee while accepting
Some checks failed
buildbot/tox Build done.

This commit is contained in:
2020-12-16 17:28:40 +01:00
parent d3d63097db
commit b44f6df32e
9 changed files with 171 additions and 22 deletions

View File

@@ -53,6 +53,11 @@ class AbstractParticipant(models.Model):
verbose_name=_('Anmerkung'),
help_text=_('Kann frei gelassen werden.'))
privacy_policy = models.TextField(blank=True,
verbose_name=_('Erklärung zur Datenspeicherung'))
privacy_policy_accepted = models.BooleanField(default=False,
verbose_name=_('Einwilligung zur Datenspeicherung'))
paid = models.BooleanField('Teilnehmerbeitrag bezahlt', default=False)
purge_at = models.DateTimeField()