Skip to content

Commit

Permalink
Show information in poster view in seperate DIV (#4011)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Goeny authored and miigotu committed Aug 31, 2017
1 parent 832ccb4 commit 72f937b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions gui/slick/views/inc_home_showList.mako
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
<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" />
</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="show-title">${_('Loading')} (${loading_show.name})</div>
<div class="show-date">&nbsp;</div>
Expand All @@ -41,6 +42,7 @@
</tr>
</table>
</div>
</div>
</div>
% endfor
% for curShow in myShowList:
Expand Down Expand Up @@ -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>
</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="show-title">
Expand Down Expand Up @@ -154,6 +157,7 @@
</tr>
</table>
</div>
</div>
</div>
% endfor
</div>
Expand Down

0 comments on commit 72f937b

Please sign in to comment.