Michel 4J
Results
1
issues of
Michel 4J
## Problem Given the following model, ```python class Document(TimeStampedModel): TYPE = Choices( ('snippet', _('A Snippet')), ('video', _('A Video')), ('image', _('An Image')), ) kind = models.CharField(max_length=20, default=TYPE.snippet, choices=TYPE) ``` and an...