+ {% for key, values in view.get_vigencias.items %}
+ {% if forloop.first %}
+
+
+
+
+ {%endif%}
+
+ {% if forloop.first %}
+ {% for dispositivo in values %}
+ {% trans 'Norma Original'%}
+ {% endfor %}
+ {% elif forloop.last %}
+ {% for dispositivo in values %}
+ {% trans 'Norma Atual'%}
+ {% endfor %}
+ {% else %}
+ {{ key }}
+
+
+ {%endif%}
+
+ {% if not forloop.first and not forloop.last %}
+
+ {%endif%}
+
+ {% if forloop.last %}
+
+
+
+
+
+ {%endif%}
+ {% endfor %}
+
+{% if view.inicio_vigencia != None and view.fim_vigencia != None %}
+ {% trans 'Vigência entre'%}
{{view.inicio_vigencia}} {% trans 'e'%}
{{view.fim_vigencia}} .
+{%endif%}
+
+
+{% include 'compilacao/template_render_bloco.html'%}
+
+{% endblock base_content %}
\ No newline at end of file
diff --git a/templates/compilacao/template_render_bloco.html b/templates/compilacao/template_render_bloco.html
new file mode 100644
index 000000000..accf8086b
--- /dev/null
+++ b/templates/compilacao/template_render_bloco.html
@@ -0,0 +1,35 @@
+{% load i18n %}
+{% load compilacao_filters %}
+
+{% for dispositivo in view.get_queryset %}
+ {% if dispositivo.nivel == view.flag_nivel_old %}
+
+ {% elif dispositivo.nivel < view.flag_nivel_old %}
+ {% close_div view.flag_nivel_old dispositivo.nivel %}
+ {% endif%}
+
+
+ {% set_nivel_old view dispositivo.nivel %}
+{% endfor %}
+{% close_div view.flag_nivel_old view.flag_nivel_ini %}
\ No newline at end of file
diff --git a/templates/norma/normajuridica_detail.html b/templates/norma/normajuridica_detail.html
new file mode 100644
index 000000000..360bfc43f
--- /dev/null
+++ b/templates/norma/normajuridica_detail.html
@@ -0,0 +1,9 @@
+{% extends "crud/detail.html" %}
+{% load i18n %}
+
+{% block sections_nav %}
+
+ {% trans 'Início' %}
+ {% trans 'Texto Integral' %}
+
+{% endblock sections_nav %}
diff --git a/templates/sessao/materia_ordemdia_list.html b/templates/sessao/materia_ordemdia_list.html
index f794037fa..3998a9d44 100644
--- a/templates/sessao/materia_ordemdia_list.html
+++ b/templates/sessao/materia_ordemdia_list.html
@@ -34,5 +34,5 @@ Matérias da Ordem do Dia
Reordenar Matérias na Ordem do Dia
Atualizar
-->
-
+
{% endblock detail_content %}
\ No newline at end of file