Skip to content
This repository has been archived by the owner on Jun 24, 2024. It is now read-only.

Commit

Permalink
Re add a condition wich was removed unintentionally (#1019)
Browse files Browse the repository at this point in the history
  • Loading branch information
rbovard authored Jun 10, 2024
1 parent 72ead94 commit 94f5d08
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ <h2>{% translate "" %}</h2>
aria-selected="{% if active_form == "amend" %}true{% else %}false{% endif %}">{% translate "Traitement" %}</a>
</li>
{% endif %}
{% if not submission.is_classified and forms.request_validation %}
{% if not submission.is_classified and forms.request_validation and not submission.validation_by_validators_is_disabled %}
<li class="nav-item">
<a class="btn btn-primary btn-action nav-link{% if active_form == "request_validation" %} active{% endif %}"
id="request-validation-tab"
Expand Down Expand Up @@ -199,7 +199,7 @@ <h4>{% translate "Mise en consultation publique" %}</h4>
{% endif %}
</div>
{% endif %}
{% if not submission.is_classified and forms.request_validation %}
{% if not submission.is_classified and forms.request_validation and not submission.validation_by_validators_is_disabled %}
<div class="tab-pane{% if active_form == "request_validation" %} show active{% endif %}"
id="request-validation"
role="tabpanel"
Expand Down

0 comments on commit 94f5d08

Please sign in to comment.