Commit fd57978c by Tom Christie

Add missing `model =` to serializer classes in docs

parent 15c8fd96
...@@ -46,6 +46,7 @@ For example, the following serializer. ...@@ -46,6 +46,7 @@ For example, the following serializer.
tracks = RelatedField(many=True) tracks = RelatedField(many=True)
class Meta: class Meta:
model = Album
fields = ('album_name', 'artist', 'tracks') fields = ('album_name', 'artist', 'tracks')
Would serialize to the following representation. Would serialize to the following representation.
...@@ -73,6 +74,7 @@ For example, the following serializer: ...@@ -73,6 +74,7 @@ For example, the following serializer:
tracks = PrimaryKeyRelatedField(many=True, read_only=True) tracks = PrimaryKeyRelatedField(many=True, read_only=True)
class Meta: class Meta:
model = Album
fields = ('album_name', 'artist', 'tracks') fields = ('album_name', 'artist', 'tracks')
Would serialize to a representation like this: Would serialize to a representation like this:
...@@ -106,6 +108,7 @@ For example, the following serializer: ...@@ -106,6 +108,7 @@ For example, the following serializer:
view_name='track-detail') view_name='track-detail')
class Meta: class Meta:
model = Album
fields = ('album_name', 'artist', 'tracks') fields = ('album_name', 'artist', 'tracks')
Would serialize to a representation like this: Would serialize to a representation like this:
...@@ -143,6 +146,7 @@ For example, the following serializer: ...@@ -143,6 +146,7 @@ For example, the following serializer:
tracks = SlugRelatedField(many=True, read_only=True, slug_field='title') tracks = SlugRelatedField(many=True, read_only=True, slug_field='title')
class Meta: class Meta:
model = Album
fields = ('album_name', 'artist', 'tracks') fields = ('album_name', 'artist', 'tracks')
Would serialize to a representation like this: Would serialize to a representation like this:
...@@ -176,6 +180,7 @@ This field can be applied as an identity relationship, such as the `'url'` field ...@@ -176,6 +180,7 @@ This field can be applied as an identity relationship, such as the `'url'` field
track_listing = HyperLinkedIdentityField(view_name='track-list') track_listing = HyperLinkedIdentityField(view_name='track-list')
class Meta: class Meta:
model = Album
fields = ('album_name', 'artist', 'track_listing') fields = ('album_name', 'artist', 'track_listing')
Would serialize to a representation like this: Would serialize to a representation like this:
...@@ -208,6 +213,7 @@ Nested relationships can be expressed by using serializers as fields. For examp ...@@ -208,6 +213,7 @@ Nested relationships can be expressed by using serializers as fields. For examp
tracks = TrackSerializer(many=True) tracks = TrackSerializer(many=True)
class Meta: class Meta:
model = Album
fields = ('album_name', 'artist', 'tracks') fields = ('album_name', 'artist', 'tracks')
Note that nested relationships are currently read-only. For read-write relationships, you should use a flat relational style. Note that nested relationships are currently read-only. For read-write relationships, you should use a flat relational style.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment