Suppose class Photo is to hold photos having choice fields and other attributes:
class Photo(models.Model): ONLYME = \'O\' FRIENDS =
Use the default attribute:
display = models.CharField(..., default=FRIENDS)
or
display = models.CharField(..., default=CHOICES[1][1])