So I have this simple models:
class Room(models.Model): STATUS = ( (\'Available\', \'Available\'), (\'Occupied\', \'Occupied\'), )