mirror of
https://github.com/Tautulli/Tautulli.git
synced 2024-11-21 04:50:36 -08:00
94 lines
4.2 KiB
HTML
94 lines
4.2 KiB
HTML
<%doc>
|
|
USAGE DOCUMENTATION :: PLEASE LEAVE THIS AT THE TOP OF THIS FILE
|
|
|
|
For Mako templating syntax documentation please visit: http://docs.makotemplates.org/en/latest/
|
|
|
|
Filename: info_collection_list.html
|
|
Version: 0.1
|
|
Variable names: data [list]
|
|
|
|
data :: Usable parameters
|
|
|
|
== Global keys ==
|
|
children_type Returns the type of children in the array.
|
|
children_count Returns the number of episodes in the array.
|
|
children_list Returns an array of episodes.
|
|
|
|
data['children_list'] :: Usable paramaters
|
|
|
|
== Global keys ==
|
|
rating_key Returns the unique identifier for the media item.
|
|
media_index Returns the episode number.
|
|
title Returns the name of the episode.
|
|
thumb Returns the location of the item's thumbnail. Use with pms_image_proxy.
|
|
parent_thumb Returns the location of the item's parent thumbnail. Use with pms_image_proxy.
|
|
|
|
DOCUMENTATION :: END
|
|
</%doc>
|
|
|
|
% if data != None:
|
|
<%
|
|
from plexpy.common import MEDIA_TYPE_HEADERS
|
|
from plexpy.helpers import page
|
|
types = ('movie', 'show', 'artist', 'album')
|
|
%>
|
|
% for media_type in types:
|
|
% if data['results_list'][media_type]:
|
|
<div class="col-md-12">
|
|
<div class="table-card-header">
|
|
<div class="header-bar">
|
|
<span>${MEDIA_TYPE_HEADERS[media_type]} in <strong>${title}</strong> collection</span>
|
|
</div>
|
|
</div>
|
|
<div class="table-card-back">
|
|
<div id="children-list" class="children-list">
|
|
<div class="item-children-wrapper">
|
|
<ul class="item-children-instance list-unstyled">
|
|
% for child in data['results_list'][media_type]:
|
|
<li>
|
|
<a href="${page('info', child['rating_key'])}" title="${child['title']}">
|
|
<div class="item-children-poster">
|
|
% if media_type in ('artist', 'album'):
|
|
<div class="item-children-poster-face cover-item" style="background-image: url(${page('pms_image_proxy', child['thumb'], child['rating_key'], 300, 300, fallback='cover')});"></div>
|
|
% else:
|
|
<div class="item-children-poster-face poster-item" style="background-image: url(${page('pms_image_proxy', child['thumb'], child['rating_key'], 300, 450, fallback='poster')});"></div>
|
|
% endif
|
|
% if _session['user_group'] == 'admin':
|
|
<span class="overlay-refresh-image" title="Refresh image"><i class="fa fa-refresh refresh_pms_image"></i></span>
|
|
% endif
|
|
</div>
|
|
</a>
|
|
% if media_type == 'artist':
|
|
<div class="item-children-instance-text-wrapper cover-item">
|
|
<h3>
|
|
<a href="${page('info', child['rating_key'])}" title="${child['title']}">${child['title']}</a>
|
|
</h3>
|
|
</div>
|
|
% elif media_type == 'album':
|
|
<div class="item-children-instance-text-wrapper cover-item">
|
|
<h3>
|
|
<a href="${page('info', child['parent_rating_key'])}" title="${child['parent_title']}">${child['parent_title']}</a>
|
|
</h3>
|
|
<h3>
|
|
<a href="${page('info', child['rating_key'])}" title="${child['title']}">${child['title']}</a>
|
|
</h3>
|
|
</div>
|
|
% else:
|
|
<div class="item-children-instance-text-wrapper poster-item">
|
|
<h3>
|
|
<a href="${page('info', child['rating_key'])}" title="${child['title']}">${child['title']}</a>
|
|
</h3>
|
|
<h3 class="text-muted">${child['year']}</h3>
|
|
</div>
|
|
% endif
|
|
</li>
|
|
% endfor
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
% endif
|
|
% endfor
|
|
% endif
|