mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-08-14 02:26:58 -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):
|
||||
<br>
|
||||
% 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
|
||||
% endfor
|
||||
</p>
|
||||
|
|
|
@ -760,7 +760,8 @@
|
|||
% if i < min(show['season_count'], 7):
|
||||
<br>
|
||||
% 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
|
||||
% endfor
|
||||
</p>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue