6
ModelChoiceField billing_companyの値の順序を変更するにはどうすればよいですか?あなたの助けのためのmodelchoicefield djangoのソート順を変更する
models.py
class Company(models.Model):
name = models.CharField(max_length=30, unique=True)
forms.py
billing_company = forms.ModelChoiceField(Company.objects, required=True)
感謝。あなたが順序集合を渡すことができる必要がありますので トム