Skip to content

Commit

Permalink
testRename: Changed it so that we highlight the entire row instead of…
Browse files Browse the repository at this point in the history
… just the newLoc field.
  • Loading branch information
thezoggy committed Sep 20, 2012
1 parent 8a56029 commit 63263d9
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions data/interfaces/default/testRename.tmpl
Expand Up @@ -55,13 +55,19 @@
#if len($epList) > 1: #if len($epList) > 1:
#set $epList = [$min($epList), $max($epList)] #set $epList = [$min($epList), $max($epList)]
#end if #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"> <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) %>" /> <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>
<td align="center" valign="top" class="nowrap"><%= "-".join(map(str, epList)) %></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">$curLoc</td>
<td width="50%" valign="top" class="#if $curLoc == $newLoc then "" else "wanted"#">$newLoc</td> <td width="50%" valign="top">$newLoc</td>
</td> </td>
</tr> </tr>
</tbody> </tbody>
Expand Down

0 comments on commit 63263d9

Please sign in to comment.