Skip to content

Instantly share code, notes, and snippets.

@brunomichetti
Created September 25, 2019 18:52
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 brunomichetti/74fc61a3da5a9622afb8ca4cbff7e498 to your computer and use it in GitHub Desktop.
Save brunomichetti/74fc61a3da5a9622afb8ca4cbff7e498 to your computer and use it in GitHub Desktop.
for person in Person.objects.all():
print(person.name)
print('pets info:')
for pet in person.pets.all():
print(pet.name)
print('---')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment