Private GIT

Skip to content
Snippets Groups Projects
Commit 04edef5f authored by Gaëtan Muller's avatar Gaëtan Muller
Browse files

Tweak Backlog overview design

parent 9338c8c7
Branches
Tags
No related merge requests found
...@@ -32,13 +32,21 @@ ...@@ -32,13 +32,21 @@
%> %>
<div class="h2footer pull-right"> <div class="h2footer pull-right">
% if totalWanted > 0:
<span class="listing-key wanted">Wanted: <b>${totalWanted}</b></span> <span class="listing-key wanted">Wanted: <b>${totalWanted}</b></span>
% endif
% if totalQualSnatched > 0:
<span class="listing-key snatched">Snatched (Low Quality): <b>${totalQualSnatched}</b></span> <span class="listing-key snatched">Snatched (Low Quality): <b>${totalQualSnatched}</b></span>
% endif
% if totalQual > 0:
<span class="listing-key qual">Low Quality: <b>${totalQual}</b></span> <span class="listing-key qual">Low Quality: <b>${totalQual}</b></span>
% endif
</div><br> </div><br>
<div class="float-left"> <div class="float-left">
Jump to Show Jump to Show:
<select id="pickShow" class="form-control form-control-inline input-sm"> <select id="pickShow" class="form-control form-control-inline input-sm">
% for curShow in backLogShows: % for curShow in backLogShows:
<option value="${curShow.indexerid}">${curShow.name}</option> <option value="${curShow.indexerid}">${curShow.name}</option>
...@@ -52,14 +60,21 @@ Jump to Show ...@@ -52,14 +60,21 @@ Jump to Show
<% continue %> <% continue %>
% endif % endif
<tr class="seasonheader" id="show-${curShow.indexerid}"> <tr class="seasonheader" id="show-${curShow.indexerid}">
<td colspan="3" class="align-left"> <td colspan="3" class="align-left" style="position: relative;">
<br><h2><a href="${srRoot}/home/displayShow?show=${curShow.indexerid}">${curShow.name}</a></h2> <h2 style="display: inline-block;"><a href="${srRoot}/home/displayShow?show=${curShow.indexerid}">${curShow.name}</a></h2>
<div class="pull-right"> <div style="position: absolute; bottom: 10px; right: 0;">
% if showCounts[curShow.indexerid][Overview.WANTED] > 0:
<span class="listing-key wanted">Wanted: <b>${showCounts[curShow.indexerid][Overview.WANTED]}</b></span> <span class="listing-key wanted">Wanted: <b>${showCounts[curShow.indexerid][Overview.WANTED]}</b></span>
% if showQualSnatched(curShow): % endif
% if showQualSnatched(curShow) and showCounts[curShow.indexerid][Overview.SNATCHED] > 0:
<span class="listing-key snatched">Snatched (Low Quality): <b>${showCounts[curShow.indexerid][Overview.SNATCHED]}</b></span> <span class="listing-key snatched">Snatched (Low Quality): <b>${showCounts[curShow.indexerid][Overview.SNATCHED]}</b></span>
% endif % endif
% if showCounts[curShow.indexerid][Overview.QUAL] > 0:
<span class="listing-key qual">Low Quality: <b>${showCounts[curShow.indexerid][Overview.QUAL]}</b></span> <span class="listing-key qual">Low Quality: <b>${showCounts[curShow.indexerid][Overview.QUAL]}</b></span>
% endif
<a class="btn btn-inline forceBacklog" href="${srRoot}/manage/backlogShow?indexer_id=${curShow.indexerid}"><i class="icon-play-circle icon-white"></i> Force Backlog</a> <a class="btn btn-inline forceBacklog" href="${srRoot}/manage/backlogShow?indexer_id=${curShow.indexerid}"><i class="icon-play-circle icon-white"></i> Force Backlog</a>
</div> </div>
</td> </td>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment