From d9786a6fd1369b6e086e4775ecc782bd39b51ce2 Mon Sep 17 00:00:00 2001 From: Eduardo Edson Batista Cordeiro Alves Date: Wed, 24 Feb 2016 12:55:46 -0300 Subject: [PATCH] Ajusta layout, de telas de materia, para bootstrap --- templates/materia/autoria.html | 55 +++++++++---------- templates/materia/autoria_edit.html | 22 +++----- templates/materia/despacho_inicial.html | 23 ++++---- templates/materia/despacho_inicial_edit.html | 20 +++---- templates/materia/documento_acessorio.html | 23 ++++---- .../materia/documento_acessorio_edit.html | 30 +++++----- .../materia/formulario_simplificado.html | 4 +- templates/materia/legislacao_citada.html | 25 ++++----- templates/materia/legislacao_citada_edit.html | 51 ++++++++--------- templates/materia/materia_anexada.html | 26 ++++----- templates/materia/materia_anexada_edit.html | 26 ++++----- .../materia/materialegislativa_list.html | 2 - templates/materia/numeracao.html | 27 ++++----- templates/materia/numeracao_edit.html | 31 +++++------ templates/materia/pesquisa_materia.html | 5 +- templates/materia/pesquisa_materia_list.html | 13 +++-- templates/materia/relatoria.html | 36 ++++++------ templates/materia/relatoria_edit.html | 38 ++++++------- templates/materia/resumo_detail_materia.html | 7 +++ templates/materia/tramitacao.html | 23 ++++---- templates/materia/tramitacao_edit.html | 45 +++++++-------- 21 files changed, 241 insertions(+), 291 deletions(-) create mode 100644 templates/materia/resumo_detail_materia.html diff --git a/templates/materia/autoria.html b/templates/materia/autoria.html index 9cb8688e0..010831281 100644 --- a/templates/materia/autoria.html +++ b/templates/materia/autoria.html @@ -5,22 +5,19 @@ {% block detail_content %}
Matéria Legislativa -
-
Tipo: {{object.tipo.sigla}}
-
Número: {{object.numero}}
-
Ano: {{object.ano}}
-
- Ementa: {{object.ementa}} + {% include "materia/resumo_detail_materia.html" %}
Autorias - - - - - - - +
Nome AutorTipo AutorPrimeiro AutorPartido Autor
+ + + + + + + + {% for a in autorias %} @@ -32,7 +29,7 @@
Nome AutorTipo AutorPrimeiro AutorPartido Autor
{{a.autor}}
-
+
Adicionar Autoria
Tipo do Autor
@@ -45,36 +42,36 @@
- {% for tipo in tipo_autores %} - + {% endfor %}
- {% for a in autores %} - {% if a.tipo_id == tipo_autor_id %} - - {% endif %} + {% if a.tipo_id == tipo_autor_id %} + + {% endif %} {% endfor %}
-
- {% for p in partido_autor %} {% if tipo_autor_id == 1 %}
- - +
+
-{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/templates/materia/autoria_edit.html b/templates/materia/autoria_edit.html index 7f14d2d21..9ca456339 100644 --- a/templates/materia/autoria_edit.html +++ b/templates/materia/autoria_edit.html @@ -5,14 +5,9 @@ {% block detail_content %}
Matéria Legislativa -
-
Tipo: {{object.tipo.sigla}}
-
Número: {{object.numero}}
-
Ano: {{object.ano}}
-
- Ementa: {{object.ementa}} + {% include "materia/resumo_detail_materia.html" %} -
+
Editar Autoria
Tipo do Autor
@@ -25,7 +20,7 @@
- {% for tipo in tipo_autores %}
- {% for a in autores %} {% if a.tipo_id == tipo_autor_id %}
-
- {% for p in partido %} {% if tipo_autor_id == 1 %}
- +
+
-{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/templates/materia/despacho_inicial.html b/templates/materia/despacho_inicial.html index bec784ea8..9c1a103d9 100644 --- a/templates/materia/despacho_inicial.html +++ b/templates/materia/despacho_inicial.html @@ -5,23 +5,20 @@ {% block detail_content %}
Matéria Legislativa -
-
Tipo: {{object.tipo.sigla}}
-
Número: {{object.numero}}
-
Ano: {{object.ano}}
-
- Ementa: {{object.ementa}} + {% include "materia/resumo_detail_materia.html" %}
Despachos - - - - - +
ComissãoSigla
+ + + + + + {% for d in despachos %} - + {% endfor %} @@ -29,4 +26,4 @@ {% crispy form %} -{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/templates/materia/despacho_inicial_edit.html b/templates/materia/despacho_inicial_edit.html index 05b76eeee..2054719c5 100644 --- a/templates/materia/despacho_inicial_edit.html +++ b/templates/materia/despacho_inicial_edit.html @@ -5,26 +5,22 @@ {% block detail_content %}
Matéria Legislativa -
-
Tipo: {{object.tipo.sigla}}
-
Número: {{object.numero}}
-
Ano: {{object.ano}}
-
- Ementa: {{object.ementa}} + {% include "materia/resumo_detail_materia.html" %} +
{% csrf_token %} -
+
Editar Despacho - {% for c in comissoes %} {% endfor %} - - - +
+ +
-{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/templates/materia/documento_acessorio.html b/templates/materia/documento_acessorio.html index d5da7b949..a4db6f7d3 100644 --- a/templates/materia/documento_acessorio.html +++ b/templates/materia/documento_acessorio.html @@ -5,22 +5,19 @@ {% block detail_content %}
Matéria Legislativa -
-
Tipo: {{object.tipo.sigla}}
-
Número: {{object.numero}}
-
Ano: {{object.ano}}
-
- Ementa: {{object.ementa}} + {% include "materia/resumo_detail_materia.html" %}
Documentos Acessório -
ComissãoSigla
{{d.comissao.nome}}{{d.comissao.nome}} {{d.comissao.sigla}}
- - - - - - +
NomeTipoDataAutor
+ + + + + + + + {% for d in docs %} diff --git a/templates/materia/documento_acessorio_edit.html b/templates/materia/documento_acessorio_edit.html index 14dcbb95a..c7390e62d 100644 --- a/templates/materia/documento_acessorio_edit.html +++ b/templates/materia/documento_acessorio_edit.html @@ -5,53 +5,49 @@ {% block detail_content %}
Matéria Legislativa -
-
Tipo: {{object.tipo.sigla}}
-
Número: {{object.numero}}
-
Ano: {{object.ano}}
-
- Ementa: {{object.ementa}} + {% include "materia/resumo_detail_materia.html" %} -
+
Editar Documento Acessório
{% csrf_token %}
Tipo* - {% for t in tipos %} - + {% endfor %}
Data - +
Nome* - +
Autor* - +
Ementa* - +
- - +
+ +
diff --git a/templates/materia/formulario_simplificado.html b/templates/materia/formulario_simplificado.html index 2725d0c87..ec4d3a6eb 100644 --- a/templates/materia/formulario_simplificado.html +++ b/templates/materia/formulario_simplificado.html @@ -1,7 +1,7 @@ {% extends "crud/detail.html" %} {% load i18n %} {% load crispy_forms_tags %} - +{% block actions %}{% endblock %} {% block detail_content %} {% crispy form %} -{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/templates/materia/legislacao_citada.html b/templates/materia/legislacao_citada.html index c1774edcc..2654e4a16 100644 --- a/templates/materia/legislacao_citada.html +++ b/templates/materia/legislacao_citada.html @@ -5,22 +5,19 @@ {% block detail_content %}
Matéria Legislativa -
-
Tipo: {{object.tipo.sigla}}
-
Número: {{object.numero}}
-
Ano: {{object.ano}}
-
- Ementa: {{object.ementa}} + {% include "materia/resumo_detail_materia.html" %}
Legislação Citada -
NomeTipoDataAutor
{{d.nome}}
- - - - - - +
Tipo NormaNúmeroAnoDisposição
+ + + + + + + + {% for l in legislacao %} @@ -33,4 +30,4 @@ {% crispy form %} -{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/templates/materia/legislacao_citada_edit.html b/templates/materia/legislacao_citada_edit.html index 7debed516..9480fb3a2 100644 --- a/templates/materia/legislacao_citada_edit.html +++ b/templates/materia/legislacao_citada_edit.html @@ -5,14 +5,9 @@ {% block detail_content %}
Matéria Legislativa -
-
Tipo: {{object.tipo.sigla}}
-
Número: {{object.numero}}
-
Ano: {{object.ano}}
-
- Ementa: {{object.ementa}} + {% include "materia/resumo_detail_materia.html" %} -
+
Editar Legislação Citada
{% csrf_token %} @@ -20,80 +15,80 @@
- {% for tipo in tipos_norma %} - + {% endfor %}
- +
- +
- +
- +
- +
- +
- +
- +
- +
- +
- +
- +
- +
- - - +
+ +
-{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/templates/materia/materia_anexada.html b/templates/materia/materia_anexada.html index 88a28690e..9f9efc00d 100644 --- a/templates/materia/materia_anexada.html +++ b/templates/materia/materia_anexada.html @@ -5,21 +5,19 @@ {% block detail_content %}
Matéria Legislativa -
-
Tipo: {{object.tipo.sigla}}
-
Número: {{object.numero}}
-
Ano: {{object.ano}}
-
- Ementa: {{object.ementa}} + {% include "materia/resumo_detail_materia.html" %} +
Matérias Anexadas -
Tipo NormaNúmeroAnoDisposição
{{l.norma.tipo.descricao}}
- - - - - +
Matéria AnexadaData AnexaçãoData Desanexação
+ + + + + + + {% for a in anexadas %} @@ -29,7 +27,7 @@ {% endfor %}
Matéria AnexadaData AnexaçãoData Desanexação
{{a.materia_anexada.tipo.sigla}} {{a.materia_anexada.numero}}/{{a.materia_anexada.ano}}
- {% csrf_token %} +

{% crispy form %}
-{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/templates/materia/materia_anexada_edit.html b/templates/materia/materia_anexada_edit.html index 3e59117f5..74e5b8197 100644 --- a/templates/materia/materia_anexada_edit.html +++ b/templates/materia/materia_anexada_edit.html @@ -5,50 +5,46 @@ {% block detail_content %}
Matéria Legislativa -
-
Tipo: {{object.tipo.sigla}}
-
Número: {{object.numero}}
-
Ano: {{object.ano}}
-
- Ementa: {{object.ementa}} -
+ {% include "materia/resumo_detail_materia.html" %} + +
Editar Matéria Anexada
{% csrf_token %}
- {% for tipo in get_tipos_materia %} - + {% endfor %}
- +
- +
- +
- +
- - + +
diff --git a/templates/materia/materialegislativa_list.html b/templates/materia/materialegislativa_list.html index 1b0c9db98..29ea560d9 100644 --- a/templates/materia/materialegislativa_list.html +++ b/templates/materia/materialegislativa_list.html @@ -9,6 +9,4 @@ {% blocktrans with verbose_name=view.verbose_name %} Pesquisar Matéria {% endblocktrans %} - - {% endblock more_buttons %} diff --git a/templates/materia/numeracao.html b/templates/materia/numeracao.html index 3c9513895..d354f465d 100644 --- a/templates/materia/numeracao.html +++ b/templates/materia/numeracao.html @@ -5,23 +5,20 @@ {% block detail_content %}
Matéria Legislativa -
-
Tipo: {{object.tipo.sigla}}
-
Número: {{object.numero}}
-
Ano: {{object.ano}}
-
- Ementa: {{object.ementa}} + {% include "materia/resumo_detail_materia.html" %}
Numeração - - - - - - - - +
Tipo MatériaDescriçãoNúmeroAnoData
+ + + + + + + + + {% for n in numeracao %} @@ -35,4 +32,4 @@ {% crispy form %} -{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/templates/materia/numeracao_edit.html b/templates/materia/numeracao_edit.html index 949f28612..6341e230a 100644 --- a/templates/materia/numeracao_edit.html +++ b/templates/materia/numeracao_edit.html @@ -5,25 +5,20 @@ {% block detail_content %}
Matéria Legislativa -
-
Tipo: {{object.tipo.sigla}}
-
Número: {{object.numero}}
-
Ano: {{object.ano}}
-
- Ementa: {{object.ementa}} + {% include "materia/resumo_detail_materia.html" %} -
+
Editar Numeração
{% csrf_token %}
- {% for t in tipos %} - + {% endfor %}
@@ -32,21 +27,21 @@
- +
- +
    - - - +
    + +
-{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/templates/materia/pesquisa_materia.html b/templates/materia/pesquisa_materia.html index 734584263..56f5cfa55 100644 --- a/templates/materia/pesquisa_materia.html +++ b/templates/materia/pesquisa_materia.html @@ -1,9 +1,8 @@ {% extends "materia/materialegislativa_detail.html" %} {% load i18n %} {% load crispy_forms_tags %} - +{% block actions %}{% endblock %} {% block sections_nav %}{% endblock %} - {% block detail_content %} {% crispy form %} -{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/templates/materia/pesquisa_materia_list.html b/templates/materia/pesquisa_materia_list.html index 27137129f..13bd43c2e 100644 --- a/templates/materia/pesquisa_materia_list.html +++ b/templates/materia/pesquisa_materia_list.html @@ -1,16 +1,19 @@ {% extends "materia/materialegislativa_detail.html" %} {% load i18n %} {% load crispy_forms_tags %} +{% block actions %}{% endblock %} {% block sections_nav %} {% endblock %} {% block detail_content %} -{% if materias %} -
Tipo MatériaDescriçãoNúmeroAnoData
{{n.tipo_materia.sigla}}
- +{% if materias %} +

Resultados

+ + + {% for m in materias %} @@ -20,4 +23,4 @@ {% else %}

Nenhum Registro recuperado

{% endif %} -{% endblock detail_content %} \ No newline at end of file +{% endblock detail_content %} diff --git a/templates/materia/relatoria.html b/templates/materia/relatoria.html index c70e55808..b954ffdfb 100644 --- a/templates/materia/relatoria.html +++ b/templates/materia/relatoria.html @@ -5,21 +5,18 @@ {% block detail_content %}
Matéria Legislativa -
-
Tipo: {{object.tipo.sigla}}
-
Número: {{object.numero}}
-
Ano: {{object.ano}}
-
- Ementa: {{object.ementa}} + {% include "materia/resumo_detail_materia.html" %}
Relatorias -

Resultados

{{m.tipo.sigla}} {{m.numero}}/{{m.ano}} - {{m.tipo}}
- {{ m.ementa }}
+ {{ m.ementa|safe }}
Localização Atual: {{m.tramitacao_set.last.unidade_tramitacao_destino|default_if_none:"Não Informada"}}

- - - - - +
Data DesignaçãoComissãoParlamentar
+ + + + + + + {% for r in relatorias %} @@ -30,7 +27,7 @@
Data DesignaçãoComissãoParlamentar
{{r.data_designacao_relator|date:'d/m/Y'}}
-
+
Adicionar Relator
{% csrf_token %} @@ -38,23 +35,23 @@
Localização Atual - +
Data Designação* - +
Data Destituição - +
Parlamentar* - {% for p in parlamentares %} @@ -63,7 +60,7 @@
Motivo Fim Relatoria - {% for t in tipo_fim_relatoria %} @@ -71,8 +68,9 @@
+
-{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/templates/materia/relatoria_edit.html b/templates/materia/relatoria_edit.html index 787d3f6f2..68629a4b1 100644 --- a/templates/materia/relatoria_edit.html +++ b/templates/materia/relatoria_edit.html @@ -5,14 +5,9 @@ {% block detail_content %}
Matéria Legislativa -
-
Tipo: {{object.tipo.sigla}}
-
Número: {{object.numero}}
-
Ano: {{object.ano}}
-
- Ementa: {{object.ementa}} + {% include "materia/resumo_detail_materia.html" %} -
+
Editar Relator
{% csrf_token %} @@ -20,46 +15,47 @@
Localização Atual - +
Data Designação* - +
Data Destituição - +
Parlamentar* - {% for p in parlamentares %} - + {% endfor %}
Motivo Fim Relatoria - {% for t in tipo_fim_relatorias %} - + {% endfor %}
- - +
+ +
-{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/templates/materia/resumo_detail_materia.html b/templates/materia/resumo_detail_materia.html new file mode 100644 index 000000000..4130aa334 --- /dev/null +++ b/templates/materia/resumo_detail_materia.html @@ -0,0 +1,7 @@ +
+
Tipo: {{object.tipo.sigla}}
+
Número: {{object.numero}}
+
Ano: {{object.ano}}
+
+Ementa: {{object.ementa}} +

diff --git a/templates/materia/tramitacao.html b/templates/materia/tramitacao.html index f27b04c0e..2576e2342 100644 --- a/templates/materia/tramitacao.html +++ b/templates/materia/tramitacao.html @@ -5,22 +5,19 @@ {% block detail_content %}
Matéria Legislativa -
-
Tipo: {{object.tipo.sigla}}
-
Número: {{object.numero}}
-
Ano: {{object.ano}}
-
- Ementa: {{object.ementa}} + {% include "materia/resumo_detail_materia.html" %}
Tramitações - - - - - - - +
Data AçãoOrigemDestinoStatus
+ + + + + + + + {% for t in tramitacoes %} diff --git a/templates/materia/tramitacao_edit.html b/templates/materia/tramitacao_edit.html index dac27bad0..75b3f2738 100644 --- a/templates/materia/tramitacao_edit.html +++ b/templates/materia/tramitacao_edit.html @@ -5,48 +5,43 @@ {% block detail_content %}
Matéria Legislativa -
-
Tipo: {{object.tipo.sigla}}
-
Número: {{object.numero}}
-
Ano: {{object.ano}}
-
- Ementa: {{object.ementa}} + {% include "materia/resumo_detail_materia.html" %} -
+
Editar Tramitação
{% csrf_token %}
- +
- +
- {% for s in status %} - + {% endfor %}
- {% for a, b in turno %} {% endfor %}
-
+
Urgente ?
@@ -54,11 +49,11 @@
- {% for u in unidade_tramitacao %} - + {% endfor %}
@@ -67,23 +62,23 @@
- +
- +
- +
- - - +
+ +
Data AçãoOrigemDestinoStatus
{{t.data_tramitacao|date:'d/m/Y'}}