[Django]-Django Multiple Levels Choices for Field

1👍

As per https://docs.djangoproject.com/en/dev/ref/models/fields/#django.db.models.Field.choices,
it seems to be only 2 level hierarchy is supported. If you need more than 2 levels, you need to use either custom widgets (or) multiple fields with Foreign Key relationships.

Leave a comment