Skip to content

Instantly share code, notes, and snippets.

@cxtadment
Created August 1, 2015 13:16
Show Gist options
  • Save cxtadment/f4d815a244f31700658f to your computer and use it in GitHub Desktop.
Save cxtadment/f4d815a244f31700658f to your computer and use it in GitHub Desktop.
class ProfileSerializer(serializers.HyperlinkedModelSerializer):
owner = serializers.ReadOnlyField(source='owner.username')
class Meta:
model = Profile
field = ('name', 'dob', 'address', 'phone', 'description', 'email', 'image', 'owner', 'bkgbImage')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment