mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-05 17:43:37 +00:00
Fixes and additions to testRename.tmpl
Good named episodes show in green now and cannot be selected since it's pointless. Cancel Rename button added to return you to show page if you wish to cancel.
This commit is contained in:
parent
b83b8721a0
commit
3c1043f77e
1 changed files with 4 additions and 2 deletions
|
@ -65,13 +65,15 @@
|
|||
#end if
|
||||
<tr class="season-$curSeason
|
||||
#if $curLoc == $newLoc:
|
||||
#if $odd then "odd" else "even"#
|
||||
good
|
||||
#else
|
||||
wanted
|
||||
#end if
|
||||
">
|
||||
<td width="1%" valign="top" align="center" class="tableleft">
|
||||
#if $curLoc != $newLoc:
|
||||
<input type="checkbox" class="epCheck" id="<%=str(cur_ep_obj.season) + 'x' + str(cur_ep_obj.episode)%>" name="<%=str(cur_ep_obj.season) + "x" + str(cur_ep_obj.episode) %>" />
|
||||
#end if
|
||||
</td>
|
||||
<td align="center" valign="top" class="nowrap"><%= "-".join(map(str, epList)) %></td>
|
||||
<td width="50%" valign="top">$curLoc</td>
|
||||
|
@ -81,5 +83,5 @@
|
|||
|
||||
#end for
|
||||
</table><br />
|
||||
<input type="submit" value="Rename Selected" class="btn btn-danger">
|
||||
<input type="submit" value="Rename Selected" class="btn btn-success"> <a href="/home/displayShow?show=$show.indexerid" class='btn btn-danger' style="line-height: 20px !important;">Cancel Rename</a>
|
||||
#include $os.path.join($sickbeard.PROG_DIR, "gui/slick/interfaces/default/inc_bottom.tmpl")
|
||||
|
|
Loading…
Reference in a new issue