5👍
✅
If UserInfo.UNIVERSITY_CHOICES
is tuple (like the ones you would use with the django admin) you must choose which of the values you are after:
school.0
or
school.1
Notice Django’s Template Language is not Python! You can see a reference of the language here:
https://docs.djangoproject.com/en/dev/topics/templates/
Source:stackexchange.com