Skip to content

Commit

Permalink
[1.1.X] Fixed #12601: Documented the slug field in the forms module. …
Browse files Browse the repository at this point in the history
…Backport of [12673] from trunk.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12674 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
ubernostrum committed Mar 3, 2010
1 parent 36e7739 commit 1332b11
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions docs/ref/forms/fields.txt
Expand Up @@ -643,6 +643,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
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``
~~~~~~~~~~~~~

Expand Down

0 comments on commit 1332b11

Please sign in to comment.