mirror of
https://github.com/django/django.git
synced 2025-08-31 07:47:37 +00:00
Changed tuple choices to list in docs.
This commit is contained in:
parent
717362d810
commit
97d3321e89
8 changed files with 27 additions and 27 deletions
|
@ -165,11 +165,11 @@ Consider this set of models::
|
|||
from django.db import models
|
||||
from django.forms import ModelForm
|
||||
|
||||
TITLE_CHOICES = (
|
||||
TITLE_CHOICES = [
|
||||
('MR', 'Mr.'),
|
||||
('MRS', 'Mrs.'),
|
||||
('MS', 'Ms.'),
|
||||
)
|
||||
]
|
||||
|
||||
class Author(models.Model):
|
||||
name = models.CharField(max_length=100)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue