Created
June 20, 2014 01:45
-
-
Save blturner/063cd54bcd4829704762 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
class ItemResource(ModelResource): | |
class Meta(ModelResource.Meta): | |
model = Item | |
class Fields: | |
content_type = ForeignKeyField(attribute='content_type', resource_cls=ItemResource) | |
class ItemResource(ModelResource): | |
class Meta(ModelResource.Meta): | |
model = Item |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment