9 lines
294 B
Python
9 lines
294 B
Python
# -*- coding: utf-8 -*-
|
|
from django import forms
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
class RegistrationResponseForm(forms.Form):
|
|
apply_reduced_fee = forms.BooleanField(required=False,
|
|
label=_(u'Reduzierte Teilnahmegebühr'))
|