Skip to content

Commit

Permalink
#539 -- File submission flags
Browse files Browse the repository at this point in the history
  • Loading branch information
wilsonmoura committed May 23, 2023
1 parent a88dd4e commit 3701ebe
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,8 @@
{% set class = 'text-warning' %}
{% elseif file.flag == 3 %}
{% set class = 'text-primary' %}
{% elseif file.flag == 4 %}
{% set class = 'text-success' %}
{% endif %}

{% set text = '' %}
Expand All @@ -151,6 +153,8 @@
{% set text = 'Supporting document' %}
{% elseif file.flag == 3 %}
{% set text = 'Reference only' %}
{% elseif file.flag == 4 %}
{% set text = 'Final version' %}
{% endif %}

<tr>
Expand Down Expand Up @@ -491,6 +495,7 @@
<option value="1">{% trans %}Required{% endtrans %}</option>
<option value="2">{% trans %}Supporting document{% endtrans %}</option>
<option value="3">{% trans %}Reference only{% endtrans %}</option>
<option value="4">{% trans %}Final version{% endtrans %}</option>
</select>
</div>
</div>
Expand Down

0 comments on commit 3701ebe

Please sign in to comment.