mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-08-20 05:13:21 -07:00
Fix database check bug.
Some styling adjustments. Use the proper image fallbacks.
This commit is contained in:
parent
ec3253afdb
commit
dcab175c18
4 changed files with 5 additions and 16 deletions
|
@ -32,20 +32,12 @@ DOCUMENTATION :: END
|
|||
% if item['type'] == 'season' or item['type'] == 'movie':
|
||||
<div class="poster-face">
|
||||
<a href="info?rating_key=${item['rating_key']}">
|
||||
% if item['thumb'] != '':
|
||||
<img src="pms_image_proxy?img=${item['thumb']}&width=153&height=225" class="poster-face">
|
||||
% else:
|
||||
<img src="interfaces/default/images/poster.png" class="poster-face" width="153" height="225">
|
||||
% endif
|
||||
<img src="pms_image_proxy?img=${item['thumb']}&width=153&height=225&fallback=poster" class="poster-face">
|
||||
</a>
|
||||
</div>
|
||||
% elif item['type'] == 'album':
|
||||
<div class="cover-face">
|
||||
% if item['thumb'] != '':
|
||||
<img src="pms_image_proxy?img=${item['thumb']}&width=153&height=153" class="cover-face">
|
||||
% else:
|
||||
<img src="interfaces/default/images/poster.png" class="cover-face" width="153" height="153">
|
||||
% endif
|
||||
<img src="pms_image_proxy?img=${item['thumb']}&width=153&height=153&fallback=cover" class="cover-face">
|
||||
</div>
|
||||
% endif
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue