How do I go about specifying and using an ENUM in a Django model?
A the top of your models.py file, add this line after you do your imports:
enum = lambda *l: [(s,_(s)) for s in l]