Answer the question
In order to leave comments, you need to log in
Why is the drop-down list not working in the administrative module?
Can't select value in dropdown box
from django.db import models
gender_choices = [
(1, "man"),
(2, "woman")
]
class User(models.Model):
name = models.CharField(max_length = 100)
mail = models.CharField(max_length = 100)
gender = models.CharField(max_length = 1, choices = gender_choices, default = 1) #с этим полем что то не так
age = models.IntegerField()
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question