Skip to content

Instantly share code, notes, and snippets.

@walison17
Created July 26, 2018 12:13
Show Gist options
  • Save walison17/88020d7388ad9a6e3960247f257e3412 to your computer and use it in GitHub Desktop.
Save walison17/88020d7388ad9a6e3960247f257e3412 to your computer and use it in GitHub Desktop.
def busca(request):
filtros = {
"categoria": request.GET.get("categoria"),
"bairro": request.GET.get("bairro")
}
trabalhadores = Trabalhador.objects.filter(**filtros)
return render(request, "teste.html", {"trabalhadores": trabalhadores})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment