[Answered ]-Is it possible to return the display name of a choice in Django?

1👍

You use .get_fieldname_display(…) [Django-doc], so if the model field is chosen, then it is get_chosen_display:

{{ data.get_chosen_display }}

Leave a comment