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 %}