From 5894c7ebc128fa1314664113b81f299ad3543029 Mon Sep 17 00:00:00 2001 From: Leandro Roberto Date: Sun, 10 Feb 2019 15:40:20 -0200 Subject: [PATCH] =?UTF-8?q?remove=20templates=20de=20compila=C3=A7=C3=A3o?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../tipotextoarticulado_detail.html | 75 ------------------- .../compilacao/tipotextoarticulado_list.html | 50 ------------- 2 files changed, 125 deletions(-) delete mode 100644 sapl/templates/compilacao/tipotextoarticulado_detail.html delete mode 100644 sapl/templates/compilacao/tipotextoarticulado_list.html diff --git a/sapl/templates/compilacao/tipotextoarticulado_detail.html b/sapl/templates/compilacao/tipotextoarticulado_detail.html deleted file mode 100644 index 58a4527a5..000000000 --- a/sapl/templates/compilacao/tipotextoarticulado_detail.html +++ /dev/null @@ -1,75 +0,0 @@ -{% extends "compilacao/base_compilacao.html" %} -{% load i18n %} -{% load compilacao_filters %} -{% load common_tags %} - -{% block base_content %} - - {% block sections_nav %} - {% endblock %} - -
- {% block actions %} -
- {% if perms.compilacao.change_tipotextoarticulado %}{% trans 'Editar' %}{% endif %} - {% if perms.compilacao.delete_tipotextoarticulado %}{% trans 'Excluir' %}{% endif %} -
- {% endblock actions %} -
- - {% block detail_content %} {# TODO replace fieldset for something semantically correct, but with similar visual grouping style #} -
- {%trans 'Identificação Básica'%} -
-
-
- -

{{ object.sigla}}

-
-
- -
-
- -

{{ object.descricao}}

-
-
- -
-
- -

{{ object.content_type|default:""}}

-
-
-
-
- {%trans 'Funcionalidades'%} -
-
-
- -

{{ object.get_participacao_social_display}}

-
-
-
-
- -

{{ object.get_publicacao_func_display}}

-
-
-
-
-
-
- -
    - {% for perfil in object.perfis.all %} -
  • {{perfil}}
  • - {% endfor %} -
-
-
-
-
- {% endblock detail_content %} -{% endblock base_content %} diff --git a/sapl/templates/compilacao/tipotextoarticulado_list.html b/sapl/templates/compilacao/tipotextoarticulado_list.html deleted file mode 100644 index 3c0ec9aaf..000000000 --- a/sapl/templates/compilacao/tipotextoarticulado_list.html +++ /dev/null @@ -1,50 +0,0 @@ -{% extends "base.html" %} -{% load i18n compilacao_filters common_tags menus%} - -{% block base_content %} - - - {% block actions %} - {% if perms.compilacao.add_tipotextoarticulado %} -
- - {% trans 'Adicionar'%} {%model_verbose_name 'sapl.compilacao.models.TipoTextoArticulado'%} - -
- {% endif %} - {% endblock actions %} - -
-
- {% if not object_list %} -

{{ NO_ENTRIES_MSG }}

- {% else %} - - - - - - - - - - {% for tipo_ta in object_list %} - - - - - - {% endfor %} - -
{% fieldclass_verbose_name 'sapl.compilacao.models.TipoTextoArticulado' 'sigla' %}{% fieldclass_verbose_name 'sapl.compilacao.models.TipoTextoArticulado' 'descricao' %}{% fieldclass_verbose_name 'sapl.compilacao.models.TipoTextoArticulado' 'content_type' %}
{{ tipo_ta.sigla }}{{ tipo_ta.descricao }}{{ tipo_ta.content_type }}
- {%endif%} - {% include 'paginacao.html'%} -
- {% if perms.base.view_tabelas_auxiliares %} - - {% endif %} -
-{% endblock %}