MCPcopy
hub / github.com/django/django / formfield

Method formfield

django/db/models/fields/__init__.py:1925–1933  ·  view source on GitHub ↗
(self, **kwargs)

Source from the content-addressed store, hash-verified

1923 return self.to_python(value)
1924
1925 def formfield(self, **kwargs):
1926 return super().formfield(
1927 **{
1928 "max_digits": self.max_digits,
1929 "decimal_places": self.decimal_places,
1930 "form_class": forms.DecimalField,
1931 **kwargs,
1932 }
1933 )
1934
1935
1936class DurationField(Field):

Callers

nothing calls this directly

Calls 1

formfieldMethod · 0.45

Tested by

no test coverage detected