mirror of
https://github.com/django/django.git
synced 2025-08-15 08:10:29 +00:00
Fixed #21560 -- missing 'slug' field in example code
I updated the documentation, that the modelform now includes the 'slug' field.
This commit is contained in:
parent
c047dda057
commit
744aac6dac
1 changed files with 1 additions and 1 deletions
|
@ -528,7 +528,7 @@ field, you could do the following::
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
model = Article
|
model = Article
|
||||||
fields = ['pub_date', 'headline', 'content', 'reporter']
|
fields = ['pub_date', 'headline', 'content', 'reporter', 'slug']
|
||||||
|
|
||||||
|
|
||||||
If you want to specify a field's validators, you can do so by defining
|
If you want to specify a field's validators, you can do so by defining
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue