Skip to content

Commit

Permalink
removed scores if task is not valid
Browse files Browse the repository at this point in the history
  • Loading branch information
Antonio Golfari committed Jun 4, 2024
1 parent 044cbe2 commit d051ddb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airscore/templates/public/comp.html
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ <h6>{{ task.comment }}</h6>
<a href="{{ url_for('public.tracks', taskid=task.id) }}" class='btn btn-primary'>Tracks Status</a>
</p>
{% endif %}
{% elif task.status is not in ["Task not set", "CANCELLED"] %}
{% elif task.status is not in ['Task not set', 'CANCELLED', 'STOPPED / NOT VALID'] %}
<p>
<a href="{{ url_for('public.download_file', filetype='igc_zip', filename=task.id) }}">IGC Zip File</a>
</p>
Expand Down

0 comments on commit d051ddb

Please sign in to comment.