registrations Package¶
registrations Package¶
backends Module¶
forms Module¶
-
class
kawaz.core.registrations.forms.KawazRegistrationForm(data=None, files=None, auto_id='id_%s', prefix=None, initial=None, error_class=<class 'django.forms.utils.ErrorList'>, label_suffix=None, empty_permitted=False, field_order=None, use_required_attribute=None)[source]¶ Bases:
registration.forms.RegistrationFormTermsOfService-
base_fields= OrderedDict([('username', <django.forms.fields.RegexField object at 0x7f2031558400>), ('email1', <django.forms.fields.EmailField object at 0x7f203154bf60>), ('email2', <django.forms.fields.EmailField object at 0x7f2031558080>), ('tos', <django.forms.fields.BooleanField object at 0x7f20315581d0>)])¶
-
declared_fields= OrderedDict([('username', <django.forms.fields.RegexField object at 0x7f2031558400>), ('email1', <django.forms.fields.EmailField object at 0x7f203154bf60>), ('email2', <django.forms.fields.EmailField object at 0x7f2031558080>), ('tos', <django.forms.fields.BooleanField object at 0x7f20315581d0>)])¶
-
media¶
-
models Module¶
-
class
kawaz.core.registrations.models.RegistrationSupplement(id, registration_profile, place, skill, remarks)[source]¶ Bases:
registration.supplements.base.RegistrationSupplementBase-
exception
DoesNotExist¶ Bases:
django.core.exceptions.ObjectDoesNotExist
-
exception
RegistrationSupplement.MultipleObjectsReturned¶ Bases:
django.core.exceptions.MultipleObjectsReturned
-
RegistrationSupplement.id¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
RegistrationSupplement.objects= <django.db.models.manager.Manager object>¶
-
RegistrationSupplement.place¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
RegistrationSupplement.registration_profile¶ Accessor to the related object on the forward side of a many-to-one or one-to-one relation.
In the example:
class Child(Model): parent = ForeignKey(Parent, related_name='children')
child.parentis aForwardManyToOneDescriptorinstance.
-
RegistrationSupplement.remarks¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
RegistrationSupplement.skill¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
exception