class SlugField(max_length=50, **options)
[source]
Slug is a newspaper term. A slug is a short label for something, containing only letters, numbers, underscores or hyphens. They’re generally used in URLs.
Like a CharField, you can specify max_length
(read the note about database portability and max_length
in that section, too). If max_length
is not specified, Django will use a default length of 50.
Implies setting Field.db_index
to True
.
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 prepopulated_fields
.
Please login to continue.