diff --git a/sapl/sessao/views.py b/sapl/sessao/views.py
index 74c9094e9..602e70ca6 100755
--- a/sapl/sessao/views.py
+++ b/sapl/sessao/views.py
@@ -3552,9 +3552,13 @@ class VotacaoEmBlocoExpediente(PermissionRequiredForAppCrudMixin, ListView):
def get_context_data(self, **kwargs):
context = super(VotacaoEmBlocoExpediente,
self).get_context_data(**kwargs)
- context['turno_choices'] = Tramitacao.TURNO_CHOICES
context['pk'] = self.kwargs['pk']
context['root_pk'] = self.kwargs['pk']
+ if not verifica_sessao_iniciada(self.request, self.kwargs['pk']):
+ context['sessao_iniciada'] = False
+ return context
+ context['sessao_iniciada'] = True
+ context['turno_choices'] = Tramitacao.TURNO_CHOICES
context['title'] = SessaoPlenaria.objects.get(id=self.kwargs['pk'])
return context
@@ -3574,9 +3578,13 @@ class VotacaoEmBlocoOrdemDia(PermissionRequiredForAppCrudMixin, ListView):
def get_context_data(self, **kwargs):
context = super(VotacaoEmBlocoOrdemDia,
self).get_context_data(**kwargs)
- context['turno_choices'] = Tramitacao.TURNO_CHOICES
context['pk'] = self.kwargs['pk']
context['root_pk'] = self.kwargs['pk']
+ if not verifica_sessao_iniciada(self.request, self.kwargs['pk']):
+ context['sessao_iniciada'] = False
+ return context
+ context['sessao_iniciada'] = True
+ context['turno_choices'] = Tramitacao.TURNO_CHOICES
context['title'] = SessaoPlenaria.objects.get(id=self.kwargs['pk'])
return context
diff --git a/sapl/templates/sessao/votacao/votacao_bloco_expediente.html b/sapl/templates/sessao/votacao/votacao_bloco_expediente.html
index 7ca074645..589a2397e 100644
--- a/sapl/templates/sessao/votacao/votacao_bloco_expediente.html
+++ b/sapl/templates/sessao/votacao/votacao_bloco_expediente.html
@@ -3,94 +3,96 @@
{% block base_content %}
-
+
+
+ {% endif %}
{% endblock base_content %}
diff --git a/sapl/templates/sessao/votacao/votacao_bloco_ordem.html b/sapl/templates/sessao/votacao/votacao_bloco_ordem.html
index e80695d00..8c80d47cc 100644
--- a/sapl/templates/sessao/votacao/votacao_bloco_ordem.html
+++ b/sapl/templates/sessao/votacao/votacao_bloco_ordem.html
@@ -3,94 +3,96 @@
{% block base_content %}
-
+ {% endif %}
{% endblock base_content %}