Created
July 26, 2018 12:13
-
-
Save walison17/88020d7388ad9a6e3960247f257e3412 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
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