Private GIT

Skip to content
Snippets Groups Projects
Commit 72f937b3 authored by Goeny's avatar Goeny Committed by miigotu
Browse files

Show information in poster view in seperate DIV (#4011)

Added a new DIV to hold the show information.
This way custom CSS is more dynamic. And if original CSS is used, there is no harm.
parent 832ccb44
Branches
Tags
No related merge requests found
...@@ -23,6 +23,7 @@ ...@@ -23,6 +23,7 @@
<div class="show-image"> <div class="show-image">
<img alt="" title="${loading_show.name}" class="show-image" style="border-bottom: 1px solid #111;" src="" data-src="${srRoot}/showPoster/?show=${loading_show.id | u}&amp;which=poster_thumb" /> <img alt="" title="${loading_show.name}" class="show-image" style="border-bottom: 1px solid #111;" src="" data-src="${srRoot}/showPoster/?show=${loading_show.id | u}&amp;which=poster_thumb" />
</div> </div>
<div class="show-information">
<div class="progressbar hidden-print" style="position:relative;" data-show-id="${loading_show.id | u}" data-progress-percentage="0"></div> <div class="progressbar hidden-print" style="position:relative;" data-show-id="${loading_show.id | u}" data-progress-percentage="0"></div>
<div class="show-title">${_('Loading')} (${loading_show.name})</div> <div class="show-title">${_('Loading')} (${loading_show.name})</div>
<div class="show-date">&nbsp;</div> <div class="show-date">&nbsp;</div>
...@@ -42,6 +43,7 @@ ...@@ -42,6 +43,7 @@
</table> </table>
</div> </div>
</div> </div>
</div>
% endfor % endfor
% for curShow in myShowList: % for curShow in myShowList:
<% <%
...@@ -103,6 +105,7 @@ ...@@ -103,6 +105,7 @@
<a href="${srRoot}/home/displayShow?show=${curShow.indexerid}"><img alt="" class="show-image" src="" data-src="${srRoot}/showPoster/?show=${curShow.indexerid}&amp;which=poster_thumb" /></a> <a href="${srRoot}/home/displayShow?show=${curShow.indexerid}"><img alt="" class="show-image" src="" data-src="${srRoot}/showPoster/?show=${curShow.indexerid}&amp;which=poster_thumb" /></a>
</div> </div>
<div class="show-information">
<div class="progressbar hidden-print" style="position:relative;" data-show-id="${curShow.indexerid}" data-progress-percentage="${progressbar_percent}"></div> <div class="progressbar hidden-print" style="position:relative;" data-show-id="${curShow.indexerid}" data-progress-percentage="${progressbar_percent}"></div>
<div class="show-title"> <div class="show-title">
...@@ -155,6 +158,7 @@ ...@@ -155,6 +158,7 @@
</table> </table>
</div> </div>
</div> </div>
</div>
% endfor % endfor
</div> </div>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment