From f8cc464452f495fce2a3d6f7494396c8f798a1e6 Mon Sep 17 00:00:00 2001 From: Edward Henderson Date: Wed, 15 Apr 2015 16:28:49 -0600 Subject: Fixed #16501 -- Added an allow_unicode parameter to SlugField. Thanks Flavio Curella and Berker Peksag for the initial patch. --- docs/ref/models/fields.txt | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'docs/ref/models') diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt index 19b73aaada..6d3176512c 100644 --- a/docs/ref/models/fields.txt +++ b/docs/ref/models/fields.txt @@ -1012,6 +1012,13 @@ It is often useful to automatically prepopulate a SlugField based on the value of some other value. You can do this automatically in the admin using :attr:`~django.contrib.admin.ModelAdmin.prepopulated_fields`. +.. attribute:: SlugField.allow_unicode + + .. versionadded:: 1.9 + + If ``True``, the field accepts Unicode letters in addition to ASCII + letters. Defaults to ``False``. + ``SmallIntegerField`` --------------------- -- cgit v1.3