mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-08-19 12:59:42 -07:00
Fix typo in newlsetter with single reminaing season
This commit is contained in:
parent
b65e6a39a0
commit
176392d837
2 changed files with 4 additions and 2 deletions
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue