I\'ve been stumped by how to make choices within my models for hours.
So far I\'ve been having issues with my approved field in the model. I want approved to be 1 of
approved
as you have it isn't a field, it's simply a class attribute containing the three choices. The choices need to be an attribute of an actual field:
APPROVAL_CHOICES = (
(u'1', u'Awaiting'),
(u'2', u'No'),
(u'3', u'Yes'),
)
approved = models.CharField(max_length=1, choices=APPROVAL_CHOICES)