Skip to content

Commit

Permalink
fix: corrige condição para mostrar btn para TAs.
Browse files Browse the repository at this point in the history
- 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.
  • Loading branch information
LeandroJatai committed Aug 22, 2024
1 parent ed466a6 commit 8c1b7b6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions sapl/templates/compilacao/text_list__embedded.html
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@
{% endfor %}
<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">
<a class="btn btn-primary active" onclick="textoMultiVigente(this, false);" title="{% trans 'Texto Multivigente 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 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 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="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>
Expand Down
2 changes: 1 addition & 1 deletion sapl/templates/norma/normajuridica_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ <h2 class="legend">{{ fieldset.legend }}</h2>
<div class="row">
<div class="col-sm-12">
<br>
<p class="control-label">{%trans 'Texto Multivigente' %}</p>
<p class="control-label">{%trans 'Texto Compilado' %}</p>
<div id="textomultivigente"></div>
</div>
</div>
Expand Down
6 changes: 3 additions & 3 deletions sapl/templates/norma/normajuridica_filter.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,14 @@ <h3 style="text-align:right;">{% trans 'Pesquisa concluída com sucesso! Foi enc
{% if n.orgao %}
<strong>Órgão:</strong> {{n.orgao}}<br>
{% endif %}

<strong>Ementa:</strong><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 %}">
<strong>
Texto Multivigente
Texto Compilado

This comment has been minimized.

Copy link
@LeandroJatai

LeandroJatai Aug 22, 2024

Author Member

"Texto Compilado" é também o utilizado em mecanismos mais abrangentes, como na publicação das normas federais.

</strong>
</a>{% if n.texto_integral %} | {% endif %}
{% endif %}
Expand Down

0 comments on commit 8c1b7b6

Please sign in to comment.