Skip to content

Instantly share code, notes, and snippets.

@renatooliveira
Created July 26, 2013 00:21
Show Gist options
  • Select an option

  • Save renatooliveira/6085077 to your computer and use it in GitHub Desktop.

Select an option

Save renatooliveira/6085077 to your computer and use it in GitHub Desktop.
class Loja(models.Model):
# attrs
class Produto(models.Model):
loja = models.ForeignKey(Loja, related_name='produtos')
loja = Loja.objects.get(id=id_da_loja)
produtos = loja.produtos.all()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment