Created
July 8, 2018 11:02
-
-
Save Ruhshan/59457be0bf932af21bca4d6994bcd537 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
## model ### | |
class ModelA(models.model): | |
field_a = | |
field_b = | |
class ModelB(models.model): | |
model_a = models.Foreignkey(ModelA) | |
field_C = | |
## model ##### | |
### serializer #### | |
class ModelBSerializer(modelserializer): | |
???????? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment