Skip to content

Instantly share code, notes, and snippets.

@bohde
Created May 27, 2012 12:04
Show Gist options
  • Save bohde/2811271 to your computer and use it in GitHub Desktop.
Save bohde/2811271 to your computer and use it in GitHub Desktop.
Example ToMany Resource
from tastypie import fields
from tastypie.resources import ModelResource
class LeagueResource(ModelResource):
registrations = fields.ToMany(LeagueRegistrationResource, attribute="leagueregistrations_set")
class Meta:
queryset = League.objects.all()
resource_name = 'league'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment