When you have a model field with a choices option you tend to have some magic values associated with human readable names. Is there in Django a convenient way to set these f
Simply replace your numbers with the human readable values you would like. As such:
PRIORITIES = ( ('LOW', 'Low'), ('NORMAL', 'Normal'), ('HIGH', 'High'), )
This makes it human readable, however, you'd have to define your own ordering.