i'm looking for a way to tranlate my models choices. There is my model:
class CompteFinancier(models.Model):
STATUS__OUI_NON = (
('--------', '--------'),
(STATUS_OUI, 'Cas num 1'),
(STATUS_NON, 'Cas num 2')
)
Cabinet = models.CharField(blank=True, max_length=200, null=True)
requis_pour_deposer = models.CharField(blank=True, max_length=200, null=True)
credibilite_cabinet= models.CharField(choices=STATUS__OUI_NON)
Can someone show me show to trans my choices cas please ?