mirror of https://github.com/django/django.git
Fixed #12601: Documented the slug field in the forms module.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12673 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
795e3235ff
commit
926bf195e0
|
@ -659,6 +659,21 @@ compatibility. The preferred way to provide an error message is to use the
|
||||||
``error_messages`` argument, passing a dictionary with ``'invalid'`` as a key
|
``error_messages`` argument, passing a dictionary with ``'invalid'`` as a key
|
||||||
and the error message as the value.
|
and the error message as the value.
|
||||||
|
|
||||||
|
``SlugField``
|
||||||
|
~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
.. class:: SlugField(**kwargs)
|
||||||
|
|
||||||
|
* Default widget: ``TextInput``
|
||||||
|
* Empty value: ``''`` (an empty string)
|
||||||
|
* Normalizes to: A Unicode object.
|
||||||
|
* Validates that the given value contains only letters, numbers and
|
||||||
|
hyphens.
|
||||||
|
* Error messages: ``required``, ``invalid``
|
||||||
|
|
||||||
|
This field is intended for use in representing a model
|
||||||
|
:class:`~django.db.models.SlugField` in forms.
|
||||||
|
|
||||||
``TimeField``
|
``TimeField``
|
||||||
~~~~~~~~~~~~~
|
~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue