mirror of https://github.com/evilhero/mylar
195 lines
8.7 KiB
HTML
195 lines
8.7 KiB
HTML
|
<%inherit file="base.html"/>
|
||
|
<%!
|
||
|
from mylar import db
|
||
|
import mylar
|
||
|
%>
|
||
|
|
||
|
<%def name="headerIncludes()">
|
||
|
<div id="subhead_container">
|
||
|
<div id="subhead_menu">
|
||
|
<a id="menu_link_edit" onclick"doAjaxCall('editIssue?ComicID=${comic['ComicID']}', $(this)),'table'" href="#" data-success="'${comic['ComicName']}' is being edited">Edit Comic</a>
|
||
|
<a id="menu_link_refresh" onclick="doAjaxCall('refreshArtist?ComicID=${comic['ComicID']}', $(this)),'table'" href="#" data-success="'${comic['ComicName']}' is being refreshed">Refresh Comic</a>
|
||
|
<a id="menu_link_delete" href="deleteArtist?ComicID=${comic['ComicID']}">Delete Comic</a>
|
||
|
%if comic['Status'] == 'Paused':
|
||
|
<a id="menu_link_resume" href="#" onclick="doAjaxCall('resumeArtist?ComicID=${comic['ComicID']}',$(this),true)" data-success="${comic['ComicName']} resumed">Resume Comic</a>
|
||
|
%else:
|
||
|
<a id="menu_link_pauze" href="#" onclick="doAjaxCall('pauseArtist?ComicID=${comic['ComicID']}',$(this),true)" data-success="${comic['ComicName']} paused">Pause Comic</a>
|
||
|
%endif
|
||
|
</div>
|
||
|
</div>
|
||
|
<a href="home" class="back">« Back to overview</a>
|
||
|
</%def>
|
||
|
|
||
|
<%def name="body()">
|
||
|
<div id="artistheader" class="clearfix">
|
||
|
<div id="artistImg">
|
||
|
<img src="${comic['ComicImage']}" class="albumArt" alt="" />
|
||
|
</div>
|
||
|
<h1>
|
||
|
%if comic['Status'] == 'Loading':
|
||
|
<img src="interfaces/default/images/loader_black.gif" alt="loading" style="float:left; margin-right: 5px;"/>
|
||
|
%endif
|
||
|
<a href="http://comicvine.com/volume/${comic['ComicID']}">${comic['ComicName']} (${comic['ComicYear']})</a>
|
||
|
%if comic['Status'] == 'Loading':
|
||
|
<h3><i>(Comic information for this comic is currently being loaded)</i></h3>
|
||
|
%endif
|
||
|
</h1>
|
||
|
<div id="artistDetails">
|
||
|
<tr>
|
||
|
<td width="150">Publisher: ${comic['ComicPublisher']}<br/></td></tr>
|
||
|
<tr><td width="150">Comics in Series: ${comic['Total']} issues (${comic['ComicPublished']})<br/></td>
|
||
|
%if comic['ComicPublisher'] == 'DC Comics':
|
||
|
<img src="interfaces/default/images/logo-dccomics.png" align="right" alt="DC" height="50" width="50" />
|
||
|
%elif comic['ComicPublisher'] == 'Marvel':
|
||
|
<img src="interfaces/default/images/logo-marvel.jpg" align="right" alt="Marvel" height="50" width="100" />
|
||
|
%elif comic['ComicPublisher'] == 'Image':
|
||
|
<img src="interfaces/default/images/logo-imagecomics.gif" align="right" alt="Image" height="100" width="50" />
|
||
|
%endif
|
||
|
</tr>
|
||
|
<tr><td width="150">Status: ${comic['Status']}
|
||
|
%if comic['Status'] == 'Active':
|
||
|
<img src="interfaces/default/images/checkmark.png"/>
|
||
|
%endif
|
||
|
<br/></td></tr>
|
||
|
<tr><td width="5"></td><td width="150">Comic Directory Location:<br/>   <small>${comic['ComicLocation']}</small></td></tr>
|
||
|
<br/><br/>
|
||
|
<tr><td>Quality Control:</td></tr>
|
||
|
<table id="artistBio_table">
|
||
|
<tr><td>Version: v5 </td></tr>
|
||
|
<tr><td id="Bio" width="150">Scanner: GreenGiant <small>(Fallback ON)</small></td><td></td></tr>
|
||
|
<tr><td id="Bio" width="150">Type: NOADS <small>(Fallback ON)</small></td>
|
||
|
<td width="75" rowspan="1"><small>over-rides default settings*</small></td></tr>
|
||
|
<tr><td id="Bio" width="150">Pixel Quality: None <small>(Fallback OFF)</small></td><td></td></tr>
|
||
|
</table>
|
||
|
</div>
|
||
|
</div>
|
||
|
<form action="markissues" method="get" id="markissues">
|
||
|
<input type="hidden" name="ComicID" value=${comic['ComicID']}>
|
||
|
<div id="markissue">Mark selected issues as
|
||
|
<select name="action" onChange="doAjaxCall('markissues',$(this),'table',true);" data-error="You didn't select any issues">
|
||
|
<option disabled="disabled" selected="selected">Choose...</option>
|
||
|
<option value="Wanted">Wanted</option>
|
||
|
<option value="Skipped">Skipped</option>
|
||
|
<option value="Downloaded">Downloaded</option>
|
||
|
</select>
|
||
|
<input type="hidden" value="Go">
|
||
|
</div>
|
||
|
<table class="display" id="issue_table">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th id="select"><input type="checkbox" onClick="toggle(this)" /></th>
|
||
|
<th id="issuenumber">Number</th>
|
||
|
<th id="issuename">Name</th>
|
||
|
<th id="reldate">Date</th>
|
||
|
<th id="type">Type</th>
|
||
|
<th id="status">Status</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
%for issue in issues:
|
||
|
<%
|
||
|
if issue['Status'] == 'Skipped':
|
||
|
grade = 'Z'
|
||
|
elif issue['Status'] == 'Wanted':
|
||
|
grade = 'X'
|
||
|
elif issue['Status'] == 'Snatched':
|
||
|
grade = 'C'
|
||
|
else:
|
||
|
grade = 'A'
|
||
|
%>
|
||
|
<tr class="grade${grade}">
|
||
|
<td id="select"><input type="checkbox" name="${issue['IssueID']}" class="checkbox" /></td>
|
||
|
<td id="issuenumber">${issue['Issue_Number']}</td>
|
||
|
<td id="issuename"><a href="issuePage?IssueID=${issue['IssueID']}">${issue['IssueName']}</a></td>
|
||
|
<td id="reldate">${issue['IssueDate']}</td>
|
||
|
<td id="type">${issue['Type']}</td>
|
||
|
<td id="status">${issue['Status']}
|
||
|
%if issue['Status'] == 'Skipped':
|
||
|
[<a href="#" onclick="doAjaxCall('queueissue?ComicName=${issue['ComicName']}&ComicID=${issue['ComicID']}&IssueID=${issue['IssueID']}&ComicIssue=${issue['Issue_Number']}&ComicYear=${issue['IssueDate']}&mode=want',$(this),'table')" data-success="'${issue['Issue_Number']}' marked as wanted">want</a>]
|
||
|
%elif (issue['Status'] == 'Wanted'):
|
||
|
[<a href="#" onclick="doAjaxCall('unqueueissue?IssueID=${issue['IssueID']}&ComicID=${issue['ComicID']}',$(this),'table')" data-success="'${issue['Issue_Number']}' has been marked as skipped">skip</a>]
|
||
|
%else:
|
||
|
[<a href="#" onclick="doAjaxCall('queueissue?ComicName=${issue['ComicName']}&ComicID=${issue['ComicID']}&IssueID=${issue['IssueID']}&ComicIssue=${issue['Issue_Number']}&mode=want', $(this),'table')" data-success="Retrying the same version of '${issue['ComicName']}' '${issue['Issue_Number']}'" title="Retry the same download again">retry</a>][<a href="#" onclick="doAjaxCall('queueissue?IssueID=${issue['IssueID']}&ComicID=${issue['ComicID']}&ComicName=${issue['ComicName']}&ComicIssue=${issue['Issue_Number']}&new=True', $(this),'table')" title="Try a new download, skipping all previously tried nzbs" data-success="Downloading new version for '${issue['ComicName']}' '${issue['Issue_Number']}'" data-success="Looking for a new version of '${issue['ComicName']}' '${issue['Issue_Number']}'">new</a>]
|
||
|
%endif
|
||
|
</td>
|
||
|
</tr>
|
||
|
%endfor
|
||
|
</tbody>
|
||
|
</table>
|
||
|
</form>
|
||
|
</%def>
|
||
|
|
||
|
<%def name="headIncludes()">
|
||
|
<link rel="stylesheet" href="interfaces/default/css/data_table.css">
|
||
|
%if comic['Status'] == 'Loading':
|
||
|
<meta http-equiv="refresh" content="60">
|
||
|
%endif
|
||
|
</%def>
|
||
|
|
||
|
<%def name="javascriptIncludes()">
|
||
|
<script src="js/libs/jquery.dataTables.min.js"></script>
|
||
|
|
||
|
<script>
|
||
|
|
||
|
function getComicArt() {
|
||
|
var id = "${comic['ComicID']}";
|
||
|
var name = "${comic['ComicImage']}";
|
||
|
var image = $("div#artistImg img#artistImage");
|
||
|
if ( !image.hasClass('done') ) {
|
||
|
image.addClass('done');
|
||
|
getComicArtwork(image,id,name,'comic');
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function getComicBio() {
|
||
|
var id = "${comic['ComicID']}";
|
||
|
var elem = $("#ComicBio");
|
||
|
getInfo(elem,id,'comic');
|
||
|
}
|
||
|
|
||
|
|
||
|
function initThisPage() {
|
||
|
%if comic['Status'] == 'Loading':
|
||
|
showMsg("Getting comic information",true);
|
||
|
%endif
|
||
|
getComicArt();
|
||
|
getComicBio();
|
||
|
$('#issue_table').dataTable({
|
||
|
"bDestroy": true,
|
||
|
"aoColumns": [
|
||
|
null,
|
||
|
null,
|
||
|
null,
|
||
|
null,
|
||
|
null,
|
||
|
null
|
||
|
|
||
|
],
|
||
|
"aoColumnDefs": [
|
||
|
{ 'bSortable': false, 'aTargets': [ 0,1 ] }
|
||
|
],
|
||
|
"oLanguage": {
|
||
|
"sLengthMenu":"Show _MENU_ issues per page",
|
||
|
"sEmptyTable": "No issue information available",
|
||
|
"sInfo":"Showing _TOTAL_ issues",
|
||
|
"sInfoEmpty":"Showing 0 to 0 of 0 issues",
|
||
|
"sInfoFiltered":"(filtered from _MAX_ total issues)",
|
||
|
"sSearch": ""},
|
||
|
"bPaginate": false,
|
||
|
"aaSorting": [[4, 'asc'],[3,'desc']]
|
||
|
|
||
|
});
|
||
|
resetFilters("issues");
|
||
|
setTimeout(function(){
|
||
|
initFancybox();
|
||
|
},1500)
|
||
|
}
|
||
|
|
||
|
$(document).ready(function() {
|
||
|
initActions();
|
||
|
initThisPage();
|
||
|
});
|
||
|
|
||
|
</script>
|
||
|
</%def>
|