ugettext and ugettext_lazy were deprecated in Django 3 and will be removed in Django 4.
9 lines
292 B
Python
9 lines
292 B
Python
# -*- coding: utf-8 -*-
|
|
from django import forms
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class RegistrationResponseForm(forms.Form):
|
|
apply_reduced_fee = forms.BooleanField(required=False,
|
|
label=_('Reduzierte Teilnahmegebühr'))
|