Class InlineForeignKeyField
A basic integer field that deals with validating the given value to a given parent instance in an inline.
Declaration
class InlineForeignKeyField(
Field)
source linkDocumentation
Methods
▶ def __init__(self, parent_instance, *args, pk_field=False, to_field=None, **kwargs) override ▶ def clean(self, value) overrideinherited doc Validate the given value and return its "cleaned" value as an appropriate Python object. Raise ValidationError for any errors.
▶ def has_changed(self, initial, data) overrideinherited doc Return True if data differs from initial.