Skip to content

Instantly share code, notes, and snippets.

@shashisp
Created July 10, 2014 22:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shashisp/091910b85117f0979238 to your computer and use it in GitHub Desktop.
Save shashisp/091910b85117f0979238 to your computer and use it in GitHub Desktop.
Django-REST-Example
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