${parameters['server_name']}
${parameters['start_date']} - ${parameters['end_date']}
|
% if recently_added.get('movie'):
![]()
${len(recently_added['movie'])} movie${'s' if len(recently_added['movie']) > 1 else ''}
% for movie in recently_added['movie']:
% if loop.index == len(recently_added['movie'])-1 and loop.index % 2 == 0:
% else:
% endif
% if preview:
% endif
% if recently_added.get('show'):
% else:
% endfor
% endif
% if movie['tagline']:
${movie['tagline']}
% endif
${movie['summary'][:450] + (movie['summary'][450:] and '...')}
% if movie['year']:
${movie['year']}
% endif
% if movie['content_rating']:
${movie['content_rating']}
% endif
% if movie['duration']:
${int(int(movie['duration'])/60000)} mins
% endif
% if movie['rating']:
★★★★★
☆☆☆☆☆
% endif
![]()
${len(recently_added['show'])} show${'s' if len(recently_added['show']) > 1 else ''} /
<% total_episodes = sum(season['episode_count'] for show in recently_added['show'] for season in show['season']) %>
${total_episodes} episode${'s' if total > 1 else ''}
% for show in recently_added['show']:
<%
if show['season_count'] == 1 and show['season'][0]['episode_count'] == 1:
link_rating_key = show['season'][0]['episode'][0]['rating_key']
link_title = show['title'] + " - " + show['season'][0]['episode'][0]['title']
else:
link_rating_key = show['rating_key']
link_title = show['title']
%>
% if loop.index == len(recently_added['show'])-1 and loop.index % 2 == 0:
% else:
% endif
% if preview:
% endif
% if recently_added.get('artist'):
% else:
% endfor
% endif
% if show['season_count'] > 1:
${show['season_count']} seasons /
% endif
<% total_show_episodes = sum(s['episode_count'] for s in show['season']) %>
${total_show_episodes} episode${'s' if total_show_episodes > 1 else ''}
% for i, season in enumerate(show['season'][:8]):
Season ${season['media_index']} ·
% if season['episode_count'] == 1:
Episode ${season['episode'][0]['media_index']} - ${season['episode'][0]['title']}
% else:
Episodes ${season['episode_range']}
% endif
% if i < min(show['season_count'], 7):
% elif i == 7 and show['season_count'] > 8: ...plus ${show['season_count'] - 8} more seasons! % endif % endfor
% if show['season_count'] == 1 and show['season'][0]['episode_count'] == 1:
${show['season'][0]['episode'][0]['summary'][:350] + (show['season'][0]['episode'][0]['summary'][350:] and '...')}
% else:
<% length = max(0, 350 - 50 * (show['season_count'] - 1)) %>
% if length:
${show['summary'][:length] + (show['summary'][length:] and '...')}
% endif
% endif
% if show['studio']:
${show['studio']}
% endif
% if show['year']:
${show['year']}
% endif
% if show['content_rating']:
${show['content_rating']}
% endif
% if show['duration']:
${int(int(show['duration'])/60000)} mins
% endif
% if show['rating']:
★★★★★
☆☆☆☆☆
% endif
![]()
${len(recently_added['artist'])} artist${'s' if len(recently_added['artist']) > 1 else ''} /
<% total_albums = sum(artist['album_count'] for artist in recently_added['artist']) %>
${total_albums} album${'s' if total > 1 else ''}
<% album_count = 0 %>
% for artist in recently_added['artist']:
% for album in artist['album']:
<% album_count += 1 %>
% if album_count == total_albums and album_count % 2 == 1:
% else:
% endif
% if preview:
% endif
% else:
% endfor
% endfor
% endif
${artist['title']} · ${album['track_count']} track${'s' if album['track_count'] > 1 else ''}
% if artist['title'].lower() != 'various artists':
${album['summary'][:200] + (album['summary'][200:] and '...')}
% endif
% if album['year']:
${album['year']}
% endif
% if album['genres']:
% for genre in album['genres'][:2]:
${genre}
% endfor
% endif
% if album['rating']:
★★★★★
☆☆☆☆☆
% endif
Newsletter generated by Tautulli.
|