From 89ef700dc37e65ed02ed37e25e48f18fa20259cf Mon Sep 17 00:00:00 2001 From: Leandro Roberto Date: Sun, 10 Feb 2019 15:49:01 -0200 Subject: [PATCH] ajusta layout do form de pesquisa textual --- sapl/templates/search/search.html | 208 ++++++++++++++---------------- 1 file changed, 97 insertions(+), 111 deletions(-) diff --git a/sapl/templates/search/search.html b/sapl/templates/search/search.html index e2d97e11f..a3070b89c 100644 --- a/sapl/templates/search/search.html +++ b/sapl/templates/search/search.html @@ -3,117 +3,103 @@ {% load common_tags %} {% block base_content %} -

Pesquisa Textual

- +

Pesquisa Textual

+
+
+
+
+ {{ form.q|as_crispy_field }} +
+
+ +
+
+

Em quais tipos de documento deseja pesquisar?

+ {{ form.models }} +
+
+ +
+
+ +
+

- - -
- -
-
- {{ form.q|as_crispy_field }} -
-
- -
-
-
-

Em quais tipos de documento deseja pesquisar?

-
-
- -
-
- {{ form.models }} -
-
- - -
-
- -
-
- -
- -
- {% if query %} - - - - - - {% for result in page.object_list %} - - - - - {% empty %} -

Nenhum texto encontrado!

- - - - {% endfor %} -

Resultados - Foram encontrados {{ page.paginator.count }} registros
- {% if page.paginator.count %} - Registros {{ page.start_index }} a {{ page.end_index }} de {{ page.paginator.count }} - {% endif %} -

- {% if result.object|search_get_model == 'm' %} -

- Matéria Legislativa: {{ result.object }}
- {{result.object.ementa}}
- - {% if result.object.texto_original %} - Texto Original: Clique aqui
- {% endif %} - {% if result.object.texto_articulado %} - Texto Articulado: Clique aqui
- {% endif %} -

- - {% elif result.object|search_get_model == 'd' %} -

- Documento Acessório: {{ result.object }}
- {{result.object.ementa}}
- {% if result.object.arquivo %} - Texto Original: Clique aqui
- {% endif %} -

- - {% elif result.object|search_get_model == 'n' %} -

- Norma Jurídica: {{ result.object }}
- {{result.object.ementa}}
- {% if result.object.texto_integral %} - Texto Original: Clique aqui
- {% endif %} - {% if result.object.texto_articulado %} - Texto Articulado: Clique aqui
- {% endif %} -

- {% endif %} -
-
- - {% if page.has_previous or page.has_next %} -
- {% if page.has_previous %} - - {% endif %}« Anterior{% if page.has_previous %}{% endif %} - | - {% if page.has_next %} - - {% endif %}Próxima »{% if page.has_next %}{% endif %} -
+ {% if query %} + + + + + + {% for result in page.object_list %} + + + + + {% empty %} +

Nenhum texto encontrado!

+ + + + {% endfor %} +

Resultados - Foram encontrados {{ page.paginator.count }} registros
+ {% if page.paginator.count %} + Registros {{ page.start_index }} a {{ page.end_index }} de {{ page.paginator.count }} {% endif %} - {% else %} - {% if 'q=' in request.get_full_path %} -

Favor informar um conjunto de caracteres na caixa 'Pesquisar' para realizar a busca

- {% endif %} - {% endif %} - - +

+ {% if result.object|search_get_model == 'm' %} +

+ Matéria Legislativa: {{ result.object }}
+ {{result.object.ementa}}
+ + {% if result.object.texto_original %} + Texto Original: Clique aqui
+ {% endif %} + {% if result.object.texto_articulado %} + Texto Articulado: Clique aqui
+ {% endif %} +

+ + {% elif result.object|search_get_model == 'd' %} +

+ Documento Acessório: {{ result.object }}
+ {{result.object.ementa}}
+ {% if result.object.arquivo %} + Texto Original: Clique aqui
+ {% endif %} +

+ + {% elif result.object|search_get_model == 'n' %} +

+ Norma Jurídica: {{ result.object }}
+ {{result.object.ementa}}
+ {% if result.object.texto_integral %} + Texto Original: Clique aqui
+ {% endif %} + {% if result.object.texto_articulado %} + Texto Articulado: Clique aqui
+ {% endif %} +

+ {% endif %} +
+
+ + {% if page.has_previous or page.has_next %} +
+ {% if page.has_previous %} + + {% endif %}« Anterior{% if page.has_previous %}{% endif %} + | + {% if page.has_next %} + + {% endif %}Próxima »{% if page.has_next %}{% endif %} +
+ {% endif %} + {% else %} + {% if 'q=' in request.get_full_path %} +

Favor informar um conjunto de caracteres na caixa 'Pesquisar' para realizar a busca

+ {% endif %} + {% endif %} + + {% endblock %}