Skip to content

Commit

Permalink
Change: don't mention versions that don't have sufficient entries
Browse files Browse the repository at this point in the history
This only clutters up the listing, without actually giving any
information.
  • Loading branch information
TrueBrain committed Mar 1, 2024
1 parent e94b9fe commit bb4d80a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions _layouts/summaries.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@ <h3>Survey Result Summary - {{ page.name }}</h3>
<ul>
{% for version in site.data.summaries[page.year][page.week] %}
<li>
{% if version[1] == nil %}
{{ version[0] }} (no summary due to low games played)
{% else %}
{% if version[1] != nil %}
<a href="#{{ version[0] }}">{{ version[0] }}</a>
{% endif %}
</li>
Expand Down

0 comments on commit bb4d80a

Please sign in to comment.