mirror of
https://github.com/django/django.git
synced 2025-07-24 13:44:32 +00:00
Fixed #31262 -- Added support for mappings on model fields and ChoiceField's choices.
This commit is contained in:
parent
68a8996bdf
commit
500e01073a
29 changed files with 822 additions and 249 deletions
|
@ -47,11 +47,11 @@ news application with an ``Article`` model::
|
|||
|
||||
from django.db import models
|
||||
|
||||
STATUS_CHOICES = [
|
||||
("d", "Draft"),
|
||||
("p", "Published"),
|
||||
("w", "Withdrawn"),
|
||||
]
|
||||
STATUS_CHOICES = {
|
||||
"d": "Draft",
|
||||
"p": "Published",
|
||||
"w": "Withdrawn",
|
||||
}
|
||||
|
||||
|
||||
class Article(models.Model):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue