mirror of
https://github.com/evilhero/mylar
synced 2025-02-13 09:44:40 +00:00
IMP: Manual Post-Processing scan will now remember set value and auto-populate field in Manage/Manual Post-Processing tab.
This commit is contained in:
parent
173b8a9836
commit
ed561615f5
1 changed files with 6 additions and 1 deletions
|
@ -88,7 +88,12 @@
|
||||||
post-processing options.<br/> The remainder will not be moved from the given directory</strong></p>
|
post-processing options.<br/> The remainder will not be moved from the given directory</strong></p>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<label for="">Path to Manually Run</label>
|
<label for="">Path to Manually Run</label>
|
||||||
<input type="text" value="Enter the full path to post-process" name="nzb_folder" size="70" />
|
%if mylar.CHECK_FOLDER:
|
||||||
|
<input type="text" value="${mylar.CHECK_FOLDER}" name="nzb_folder" size="70" />
|
||||||
|
%else:
|
||||||
|
<input type="text" value="Enter the full path to post-process" onfocus="if
|
||||||
|
(this.value==this.defaultValue) this.value='';" name="nzb_folder" size="70" />
|
||||||
|
%endif
|
||||||
<input type="hidden" name="nzb_name" value='Manual Run' />
|
<input type="hidden" name="nzb_name" value='Manual Run' />
|
||||||
</div>
|
</div>
|
||||||
<input type="button" value="Go Manual Run!" onclick="doAjaxCall('post_process',$(this),'tabs',true);return false;" data-success="Manual post-processing now running." data-error="Manual post-processing unable to run at this time.">
|
<input type="button" value="Go Manual Run!" onclick="doAjaxCall('post_process',$(this),'tabs',true);return false;" data-success="Manual post-processing now running." data-error="Manual post-processing unable to run at this time.">
|
||||||
|
|
Loading…
Reference in a new issue