Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Abdulla Alshubbar
31,298 PointsDjango REST Framework (Model Serlializer Quiz Question)
Here is the question:
Great! Now create a ModelSerializer for each of the three models, Game, Player, and Score. Name them ModelNameSerializer, e.g. PlayerSerializer. Remember to set the model attribute in the class Meta.
My code won't get accepted ! anything wrong with it ?
from rest_framework import serializers
from . import models
class GameSerializer(serializers.ModelSerializer):
class Meta:
model = Game
class PlayerSerializer(serializers.ModelSerializer):
class Meta:
model = Player
class ScoreSerializer(serializers.ModelSerializer):
class Meta:
model = Score
3 Answers

David Axelrod
36,073 PointsHey Abdulla!
Just on their own, Player, Game and Score are not defined.
Try accessing them though models.<ClassName>

Quinn Zepeda
15,175 PointsMine is also failing with models.classname
from rest_framework import serializers from . import models
class GameSerializer(serializer.ModelSerializer): class Meta: model = models.Game
class PlayerSerializer(serializer.ModelSerializer): class Meta: model = models.Player
class ScoreSerializer(serializer.ModelSerializer): class Meta: model = models.Score

Umesh Chaudhary
Courses Plus Student 746 Pointsadd model = models.Game
and so on for other two