Private GIT

Skip to content
Snippets Groups Projects
Commit 63263d95 authored by Jonathon Saine's avatar Jonathon Saine
Browse files

testRename: Changed it so that we highlight the entire row instead of just the newLoc field.

parent 8a56029b
No related branches found
No related tags found
No related merge requests found
......@@ -55,13 +55,19 @@
#if len($epList) > 1:
#set $epList = [$min($epList), $max($epList)]
#end if
<tr class="season-$curSeason #if $odd then "odd" else "even"#">
<tr class="season-$curSeason
#if $curLoc == $newLoc:
#if $odd then "odd" else "even"#
#else
wanted
#end if
">
<td width="1%" valign="top">
<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) %>" />
</td>
<td align="center" valign="top" class="nowrap"><%= "-".join(map(str, epList)) %></td>
<td width="50%" valign="top">$curLoc</td>
<td width="50%" valign="top" class="#if $curLoc == $newLoc then "" else "wanted"#">$newLoc</td>
<td width="50%" valign="top">$newLoc</td>
</td>
</tr>
</tbody>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment