Fix typo in newlsetter with single reminaing season

This commit is contained in:
JonnyWong16 2018-07-02 16:16:05 -07:00
commit 176392d837
2 changed files with 4 additions and 2 deletions

View file

@ -759,7 +759,8 @@
% if i < min(show['season_count'], 7): % if i < min(show['season_count'], 7):
<br> <br>
% elif i == 7 and show['season_count'] > 8: % elif i == 7 and show['season_count'] > 8:
...plus ${show['season_count'] - 8} more seasons! <% remaining_seasons = show['season_count'] - 8 %>
...plus ${remaining_seasons} more season${'s' if remaining_seasons > 1 else ''}!
% endif % endif
% endfor % endfor
</p> </p>

View file

@ -760,7 +760,8 @@
% if i < min(show['season_count'], 7): % if i < min(show['season_count'], 7):
<br> <br>
% elif i == 7 and show['season_count'] > 8: % elif i == 7 and show['season_count'] > 8:
...plus ${show['season_count'] - 8} more seasons! <% remaining_seasons = show['season_count'] - 8 %>
...plus ${remaining_seasons} more season${'s' if remaining_seasons > 1 else ''}!
% endif % endif
% endfor % endfor
</p> </p>