From 3546e9f34c222577c890f2b4420ceda63adde8ee Mon Sep 17 00:00:00 2001 From: Eduardo Edson Batista Cordeiro Alves Date: Wed, 9 Nov 2016 15:02:13 -0200 Subject: [PATCH] Remove template de pesquisa antigo --- sapl/templates/norma/list_pesquisa.html | 39 ------------------------- sapl/templates/norma/pesquisa.html | 20 ------------- 2 files changed, 59 deletions(-) delete mode 100644 sapl/templates/norma/list_pesquisa.html delete mode 100644 sapl/templates/norma/pesquisa.html diff --git a/sapl/templates/norma/list_pesquisa.html b/sapl/templates/norma/list_pesquisa.html deleted file mode 100644 index 8fb65745a..000000000 --- a/sapl/templates/norma/list_pesquisa.html +++ /dev/null @@ -1,39 +0,0 @@ -{% extends "crud/detail.html" %} -{% load i18n %} -{% load crispy_forms_tags %} -{% load common_tags %} - -{% block actions %}{% endblock %} -{% block detail_content %} -
- {% if perms.norma.add_normajuridica %} - Adicionar Norma Jurídica - {% endif %} -
-


- {% if object_list %} - - - - - - - - - - - {% for obj in object_list %} - - - - - - - - {% endfor %} -
Tipo da Norma JuridicaNúmeroAnoDataEmenta
{{obj.tipo}}{{obj.numero}}{{obj.ano}}{{obj.data}}{{obj.ementa|safe}}
- {% else %} -

Nenhum Registro recuperado

- {% endif %} - -{% endblock detail_content %} diff --git a/sapl/templates/norma/pesquisa.html b/sapl/templates/norma/pesquisa.html deleted file mode 100644 index 0a3228575..000000000 --- a/sapl/templates/norma/pesquisa.html +++ /dev/null @@ -1,20 +0,0 @@ -{% extends "crud/detail.html" %} -{% load i18n %} -{% load crispy_forms_tags %} -{% load common_tags %} - - -{% block base_content %} - {% block actions %} -
- {% if perms.norma.add_normajuridica %} - {% trans 'Adicionar Norma Juridica' %} - {% endif %} -
-

- {% endblock %} - - {% block detail_content %} - {% crispy form %} - {% endblock %} -{% endblock %}