Browse Source

fix: corrige condição para mostrar btn para TAs.

- a condição completa para acesso ao texto articulado não é só a
  exitência de texto articulado, mas sim se existe e está publicado.
- dois usuários sugeriram que o display do btn fosse alterado de "Texto
  Multivigente" para "Texto Compilado", que é o que aparece na navbar da
  norma e no final da tela normajuridica_details.
pull/3721/merge
LeandroJatai 4 months ago
parent
commit
8c1b7b605e
  1. 4
      sapl/templates/compilacao/text_list__embedded.html
  2. 2
      sapl/templates/norma/normajuridica_detail.html
  3. 4
      sapl/templates/norma/normajuridica_filter.html

4
sapl/templates/compilacao/text_list__embedded.html

@ -71,8 +71,8 @@
{% endfor %} {% endfor %}
<div class="{% if not ta_pub_list %}d-none{% else %}d-flex{% endif %} tipo-vigencias fixed-bottom justify-content-center"> <div class="{% if not ta_pub_list %}d-none{% else %}d-flex{% endif %} tipo-vigencias fixed-bottom justify-content-center">
<div class="btn-group btn-group-sm"> <div class="btn-group btn-group-sm">
<a class="btn btn-primary active" onclick="textoMultiVigente(this, false);" title="{% trans 'Texto Multivigente Sequencial'%}">{% trans 'TMS'%}</a> <a class="btn btn-primary active" onclick="textoMultiVigente(this, false);" title="{% trans 'Texto Compilado Sequencial'%}">{% trans 'TMS'%}</a>
<a class="btn btn-primary" onclick="textoMultiVigente(this, true);" title="{% trans 'Texto Multivigente Integrado com Realce de Alterações'%}">{% trans 'TMI'%}</a> <a class="btn btn-primary" onclick="textoMultiVigente(this, true);" title="{% trans 'Texto Compilado Integrado com Realce de Alterações'%}">{% trans 'TMI'%}</a>
<a class="btn btn-primary" onclick="textoMultiVigente(this, false); textoVigente(this, true);" title="{% trans 'Texto Vigente COM Links para Textos Alteradores'%}">{% trans 'TVL'%}</a> <a class="btn btn-primary" onclick="textoMultiVigente(this, false); textoVigente(this, true);" title="{% trans 'Texto Vigente COM Links para Textos Alteradores'%}">{% trans 'TVL'%}</a>
<a class="btn btn-primary" onclick="textoVigente(this, false);" title="{% trans 'Texto Vigente'%}">{% trans 'TVT'%}</a> <a class="btn btn-primary" onclick="textoVigente(this, false);" title="{% trans 'Texto Vigente'%}">{% trans 'TVT'%}</a>
<a class="btn btn-primary" onclick="textoVigenteSemRevogados(this, false);" title="{% trans 'Texto Vigente Sem Dispositivos Revogados'%}">{% trans 'TVR'%}</a> <a class="btn btn-primary" onclick="textoVigenteSemRevogados(this, false);" title="{% trans 'Texto Vigente Sem Dispositivos Revogados'%}">{% trans 'TVR'%}</a>

2
sapl/templates/norma/normajuridica_detail.html

@ -140,7 +140,7 @@
<div class="row"> <div class="row">
<div class="col-sm-12"> <div class="col-sm-12">
<br> <br>
<p class="control-label">{%trans 'Texto Multivigente' %}</p> <p class="control-label">{%trans 'Texto Compilado' %}</p>
<div id="textomultivigente"></div> <div id="textomultivigente"></div>
</div> </div>
</div> </div>

4
sapl/templates/norma/normajuridica_filter.html

@ -64,10 +64,10 @@
<strong>Ementa:</strong><br> <strong>Ementa:</strong><br>
{{n.ementa|safe}}<br> {{n.ementa|safe}}<br>
{% if n.texto_articulado.exists %} {% if n.texto_articulado.exists and not n.texto_articulado.first.privacidade %}
<a href="{% url 'sapl.norma:normajuridica_detail' n.id %}"> <a href="{% url 'sapl.norma:normajuridica_detail' n.id %}">
<strong> <strong>
Texto Multivigente Texto Compilado
</strong> </strong>
</a>{% if n.texto_integral %} | {% endif %} </a>{% if n.texto_integral %} | {% endif %}
{% endif %} {% endif %}

Loading…
Cancel
Save