registration.supplements.default package¶
Submodules¶
registration.supplements.default.models module¶
-
class
registration.supplements.default.models.DefaultRegistrationSupplement(*args, **kwargs)[source]¶ Bases:
registration.supplements.base.RegistrationSupplementBaseA simple registration supplement model which requires remarks
-
exception
DoesNotExist¶ Bases:
django.core.exceptions.ObjectDoesNotExist
-
exception
DefaultRegistrationSupplement.MultipleObjectsReturned¶ Bases:
django.core.exceptions.MultipleObjectsReturned
-
DefaultRegistrationSupplement.id¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
DefaultRegistrationSupplement.objects= <django.db.models.manager.Manager object>¶
-
DefaultRegistrationSupplement.registration_profile¶ Accessor to the related object on the forward side of a one-to-one relation.
In the example:
class Restaurant(Model): place = OneToOneField(Place, related_name='restaurant')
restaurant.placeis aForwardOneToOneDescriptorinstance.
-
DefaultRegistrationSupplement.remarks¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
exception