Created
July 10, 2014 22:54
-
-
Save shashisp/091910b85117f0979238 to your computer and use it in GitHub Desktop.
Django-REST-Example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from .models import Organisation | |
from rest_framework import serializers | |
class OrganisationSerializer(serializers.HyperlinkedModelSerializer): | |
class Meta: | |
model = Organisation | |
fields = ('name', 'service_type', 'address', 'city', 'contact', 'logo', 'description') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment