私は models.py ファイルの作成に取り組んでおり、いくつかのフィールドの自動コンパイルを実行するためのコントロールが必要です。
MOTIVOINGRESSO = (
(u'sequestro ', u'sequestro'),
(u'fermo ', u'fermo'),
(u'confisca final ', u'confisca final'),
(u'cambio custodian ', u'cambio custodian'),
)
motivo_ingresso = models.CharField (max_length = 50, choices = MOTIVOINGRESSO)
FERMO = (
(u'30 ', u'30'),
(u'60 ', u'60'),
(u'90 ', u'90'),
(u'180 ', u'180'),
(u'1 month ', u'1 month'),
(u'3 months, 'u'3 months'),
(u'indeterminato ', u'indeterminato'),
)
durata_in_giorni_del_fermo = models.CharField (max_length = 20, choices = STOPPED, blank = True)
管理者が「 sequestro」をクリックdurata_in_giorni_del_fermo
すると、自動的に「indeterminato」が選択されます。入力した値を報告する必要がありますか? またはモデル内の場合はマシンサイクル?
何か案は?