Skip to content

Commit

Permalink
Show spatial subetting bounding box on results page
Browse files Browse the repository at this point in the history
  • Loading branch information
awst-baum committed Sep 16, 2019
1 parent ce02ae9 commit 066b0dd
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions validator/templates/validator/result.html
Expand Up @@ -78,6 +78,13 @@ <h4 class="my-0 font-weight-normal">Summary</h4>
<li>Validated over entire available timespan.</li>
{% endif %}

{% if val.min_lat and val.min_lon and val.max_lat and val.max_lon %}
<li>Spatial filter bounding box: [{{ val.min_lat }}, {{ val.min_lon }}, {{ val.max_lat }}, {{ val.max_lon }}].</li>
{% else %}
<li>Validated globally.</li>
{% endif %}


{% if val.progress == -1 %}
<li>The validation was cancelled.</li>
{% else %}
Expand Down

0 comments on commit 066b0dd

Please sign in to comment.