From 401bff5c45d278b44542ef4996fff46f21e4d702 Mon Sep 17 00:00:00 2001 From: Cesar Augusto de Carvalho Date: Tue, 12 Mar 2019 08:09:40 -0300 Subject: [PATCH] fix #2595 (#2597) --- sapl/sessao/views.py | 8 +-- .../votacao/votacao_bloco_expediente.html | 64 ++++++++++--------- .../sessao/votacao/votacao_bloco_ordem.html | 64 ++++++++++--------- 3 files changed, 70 insertions(+), 66 deletions(-) diff --git a/sapl/sessao/views.py b/sapl/sessao/views.py index c94388a06..d2bb02f28 100755 --- a/sapl/sessao/views.py +++ b/sapl/sessao/views.py @@ -3342,17 +3342,16 @@ class VotacaoEmBlocoExpediente(PermissionRequiredForAppCrudMixin, ListView): logger = logging.getLogger(__name__) def get_queryset(self): - kwargs = self.kwargs - return ExpedienteMateria.objects.filter(sessao_plenaria_id=kwargs['pk'], + return ExpedienteMateria.objects.filter(sessao_plenaria_id=self.kwargs['pk'], resultado='') def get_context_data(self, **kwargs): context = super(VotacaoEmBlocoExpediente, self).get_context_data(**kwargs) context['turno_choices'] = Tramitacao.TURNO_CHOICES - context['title'] = SessaoPlenaria.objects.get(id=self.kwargs['pk']) context['pk'] = self.kwargs['pk'] context['root_pk'] = self.kwargs['pk'] + context['title'] = SessaoPlenaria.objects.get(id=self.kwargs['pk']) return context @@ -3393,7 +3392,8 @@ class VotacaoEmBlocoSimbolicaView(PermissionRequiredForAppCrudMixin, TemplateVie context = {'pk': self.kwargs['pk'], 'root_pk': self.kwargs['pk'], 'title': SessaoPlenaria.objects.get(id=self.kwargs['pk']), - 'origem': request.POST['origem'] + 'origem': request.POST['origem'], + 'subnav_template_name': 'sessao/subnav.yaml' } if 'marcadas_1' in request.POST: diff --git a/sapl/templates/sessao/votacao/votacao_bloco_expediente.html b/sapl/templates/sessao/votacao/votacao_bloco_expediente.html index 9c0ef7185..00acfd23f 100644 --- a/sapl/templates/sessao/votacao/votacao_bloco_expediente.html +++ b/sapl/templates/sessao/votacao/votacao_bloco_expediente.html @@ -40,39 +40,41 @@ {% for o in expedientes %} - - - - {{o.materia.tipo.sigla}} {{o.materia.numero}}/{{o.materia.ano}} - {{o.materia.tipo}}
- {% if o.materia.numeracao_set.last %} - Processo:   {{o.materia.numeracao_set.last}}
- {% endif %} - Autor: - {% for a in o.materia.autoria_set.all %} - {% if not forloop.first %} - ,    {{a.autor|default_if_none:""}} - {% else %} -  {{a.autor|default_if_none:""}} + {% if o.tipo_votacao == 1 or o.tipo_votacao == 2 %} + + + + {{o.materia.tipo.sigla}} {{o.materia.numero}}/{{o.materia.ano}} - {{o.materia.tipo}}
+ {% if o.materia.numeracao_set.last %} + Processo:   {{o.materia.numeracao_set.last}}
{% endif %} - {% endfor %} -
- {% if o.materia.numero_protocolo %} - Protocolo:   {{o.materia.numero_protocolo}}
- {% endif %} - {% if o.materia.tramitacao_set.last %} - {% if o.materia.tramitacao_set.last.turno %} - Turno:  - {% for t in turno_choices %} - {% if t.0 == o.materia.tramitacao_set.last.turno %} - {{ t.1 }} - {% endif %} - {% endfor %}
+ Autor: + {% for a in o.materia.autoria_set.all %} + {% if not forloop.first %} + ,    {{a.autor|default_if_none:""}} + {% else %} +  {{a.autor|default_if_none:""}} + {% endif %} + {% endfor %} +
+ {% if o.materia.numero_protocolo %} + Protocolo:   {{o.materia.numero_protocolo}}
+ {% endif %} + {% if o.materia.tramitacao_set.last %} + {% if o.materia.tramitacao_set.last.turno %} + Turno:  + {% for t in turno_choices %} + {% if t.0 == o.materia.tramitacao_set.last.turno %} + {{ t.1 }} + {% endif %} + {% endfor %}
+ {% endif %} {% endif %} - {% endif %} - Ementa: {{ o.ementa|safe }}
-

- - + Ementa: {{ o.ementa|safe }}
+

+ + + {% endif %} {% endfor %} diff --git a/sapl/templates/sessao/votacao/votacao_bloco_ordem.html b/sapl/templates/sessao/votacao/votacao_bloco_ordem.html index 6aa676db4..df00d5e9d 100644 --- a/sapl/templates/sessao/votacao/votacao_bloco_ordem.html +++ b/sapl/templates/sessao/votacao/votacao_bloco_ordem.html @@ -40,39 +40,41 @@ {% for o in ordem_dia %} - - - - {{o.materia.tipo.sigla}} {{o.materia.numero}}/{{o.materia.ano}} - {{o.materia.tipo}}
- {% if o.materia.numeracao_set.last %} - Processo:   {{o.materia.numeracao_set.last}}
- {% endif %} - Autor: - {% for a in o.materia.autoria_set.all %} - {% if not forloop.first %} - ,    {{a.autor|default_if_none:""}} - {% else %} -  {{a.autor|default_if_none:""}} + {% if o.tipo_votacao == 1 or o.tipo_votacao == 2 %} + + + + {{o.materia.tipo.sigla}} {{o.materia.numero}}/{{o.materia.ano}} - {{o.materia.tipo}}
+ {% if o.materia.numeracao_set.last %} + Processo:   {{o.materia.numeracao_set.last}}
{% endif %} - {% endfor %} -
- {% if o.materia.numero_protocolo %} - Protocolo:   {{o.materia.numero_protocolo}}
- {% endif %} - {% if o.materia.tramitacao_set.last %} - {% if o.materia.tramitacao_set.last.turno %} - Turno:  - {% for t in turno_choices %} - {% if t.0 == o.materia.tramitacao_set.last.turno %} - {{ t.1 }} - {% endif %} - {% endfor %}
+ Autor: + {% for a in o.materia.autoria_set.all %} + {% if not forloop.first %} + ,    {{a.autor|default_if_none:""}} + {% else %} +  {{a.autor|default_if_none:""}} + {% endif %} + {% endfor %} +
+ {% if o.materia.numero_protocolo %} + Protocolo:   {{o.materia.numero_protocolo}}
{% endif %} - {% endif %} - Ementa: {{ o.ementa|safe }}
-

- - + {% if o.materia.tramitacao_set.last %} + {% if o.materia.tramitacao_set.last.turno %} + Turno:  + {% for t in turno_choices %} + {% if t.0 == o.materia.tramitacao_set.last.turno %} + {{ t.1 }} + {% endif %} + {% endfor %}
+ {% endif %} + {% endif %} + Ementa: {{ o.ementa|safe }}
+

+ + + {% endif %} {% endfor %}