mylar/data/interfaces/default/previewrename.html

46 lines
1.7 KiB
HTML
Raw Normal View History

FIX: if 32p was disabled due to inability to signon, would still attempt to retrieve cached result when match occured which would then possibly result in excessive attempted logins, IMP: Added Force Type option to comicdetails page which will allow the type of series to be forced to TPB/GN format if Mylar is unable to decipher it under normal circumstances (doing this will affect how files are parsed for the given series), IMP: TPB/GN File Parser will now account for mutiple issues of the same TPB series within the given directory, IMP: When enabling/disabling Force Type, will rename existing folder to accomodate new naming folder convention if required, IMP: Started to move some of the file rename/manipulation modules into a filer.py module for more consistency, IMP: Added a to Folder Format which when triggered will use the designated Series Type, IMP:(#2130) When importing, option now available for the final series destination path to use the imported path location instead of defaulting to the Comic Location base folder - status will be no longer be Archived in such cases. Will also not show previous imported series on subsequent import runs if the import directory has not changed (thnx @CuddleBear92), IMP: Added the codebase for a Rename Preview option into the mix - GUI available, but not linked, FIX: Removed DEM from RSS scans when Public Torrents option is enabled, FIX:(#2137) When adding series, if series indicated date in a different format other than just numeric, would cause error
2018-12-10 17:27:53 +00:00
<%inherit file="base.html"/>
<%
import mylar
%>
<%def name="headIncludes()">
</%def>
<%def name="body()">
<div id="paddingheader">
<h1 class="clearfix">${title}</h1></br>
</div>
<div style="position:relative; width:960px; height:0px; margin:10px auto;">
<%
format_len = len(file_format)
%>
<form action="previewRename" type="GET">
<div style="position:absolute; top:-20px; right:0px;">
<label>File Format (Applied):</label>
<input type="text" name="file_format" value="${file_format}" size="${format_len}"><input type="image" src="interfaces/default/images/submit.png" height="25" width="25" class="highqual" />
<input type="hidden" name="comicid" value="${comicid}" />
</div>
</form>
</div>
<div>
<table cellpadding="5" cellspacing="5">
<thead>
<tr>
<th id="issueid">IssueID</th>
<th id="originalname" width="500" style="text-align:center">Original Name</th>
<th id="renamed" width="500" style="text-align:center">Renamed</th>
</tr>
</thead>
<tbody>
%for ti in resultlist:
<tr>
<td id="issueid">${ti['issueid']}</td>
<td id="originalname" width="500" style="text-align:center">${ti['original']}</td>
<td id="renamed" width="500" style="text-align:center">${ti['new']}</td>
</tr>
%endfor
</tbody>
</table>
</div>
</%def>