|
|
@ -3,7 +3,7 @@ from django.core import serializers |
|
|
|
from django.http import HttpResponse, JsonResponse |
|
|
|
from django.shortcuts import render |
|
|
|
|
|
|
|
from parlamentares.models import Filiacao, Parlamentar |
|
|
|
from parlamentares.models import Filiacao |
|
|
|
from sessao.models import (OrdemDia, PresencaOrdemDia, RegistroVotacao, |
|
|
|
SessaoPlenaria, SessaoPlenariaPresenca, |
|
|
|
VotoParlamentar) |
|
|
@ -35,7 +35,7 @@ def json_votacao(request): |
|
|
|
# Magic! |
|
|
|
# http://stackoverflow.com/questions/15507171/django-filter-query-foreign-key |
|
|
|
# recuperar pela votacao.id |
|
|
|
voto_parlamentar = VotoParlamentar.objects.filter(votacao_id = votacao.id) |
|
|
|
voto_parlamentar = VotoParlamentar.objects.filter(votacao_id=votacao.id) |
|
|
|
votos = {} |
|
|
|
for vp in voto_parlamentar: |
|
|
|
votos[vp.parlamentar.nome_parlamentar] = vp.voto |
|
|
|