class URLField(**kwargs)
[source]
- Default widget:
URLInput
- Empty value:
''
(an empty string) - Normalizes to: A Unicode object.
- Validates that the given value is a valid URL.
- Error message keys:
required
,invalid
Takes the following optional arguments:
-
max_length
-
min_length
These are the same as CharField.max_length
and CharField.min_length
.
Please login to continue.