diff --git a/sapl/sessao/views.py b/sapl/sessao/views.py
index a3b77d8f5..b850ccf1c 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 %}