diff options
| author | Adam Johnson <me@adamj.eu> | 2023-11-24 23:00:17 +0000 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2023-11-25 17:08:50 +0100 |
| commit | 0203771b626c27c1af24cdeb0e425ccca3d19ad5 (patch) | |
| tree | 9f3bdd257cad8ce7eb550974ecfe4a1888e5b078 /docs/ref/forms/fields.txt | |
| parent | 978680db224601e3e09f715c82f89f390c63a763 (diff) | |
Refs #34380 -- Improved docs for forms.URLField.assume_scheme.
Diffstat (limited to 'docs/ref/forms/fields.txt')
| -rw-r--r-- | docs/ref/forms/fields.txt | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/docs/ref/forms/fields.txt b/docs/ref/forms/fields.txt index ed685cfff6..0f32df0ebb 100644 --- a/docs/ref/forms/fields.txt +++ b/docs/ref/forms/fields.txt @@ -1141,12 +1141,16 @@ For each field, we describe the default widget used if you don't specify * Error message keys: ``required``, ``invalid`` Has the optional arguments ``max_length``, ``min_length``, ``empty_value`` - which work just as they do for :class:`CharField`, and ``assume_scheme`` - that defaults to ``"http"``. + which work just as they do for :class:`CharField`, and one more argument: - .. versionchanged:: 5.0 + .. attribute:: assume_scheme + + .. versionadded:: 5.0 - The ``assume_scheme`` argument was added. + The scheme assumed for URLs provided without one. Defaults to + ``"http"``. For example, if ``assume_scheme`` is ``"https"`` and the + provided value is ``"example.com"``, the normalized value will be + ``"https://example.com"``. .. deprecated:: 5.0 |
