Private GIT

Skip to content
Snippets Groups Projects
Commit 682d4b7a authored by Nic Wolfe's avatar Nic Wolfe
Browse files

Merge pull request #232 from thezoggy/tooltip

Back by popular demand..
parents 99defb86 eab6d366
No related branches found
No related tags found
No related merge requests found
......@@ -150,6 +150,9 @@ clear:left;
.plotInfo {
cursor:help;
font-weight: 700;
float: right;
position: relative;
margin-left: 8px;
}
#tooltip {
......
......@@ -143,18 +143,19 @@
<!-- start $cur_result["show_name"] //-->
<tr class="$show_div">
#if $cur_result["description"] != "" and $cur_result["description"] != None:
<td class="nowrap" align="center"><span class="plotInfo" id="plot_info_<%=str(cur_result["showid"])+"_"+str(cur_result["season"])+"_"+str(cur_result["episode"])%>">$datetime.date.fromordinal(int($cur_result["airdate"]))</span></td>
#else:
<td align="center" class="nowrap">$datetime.date.fromordinal(int($cur_result["airdate"]))</td>
#end if
<td class="tvShow"><a href="$sbRoot/home/displayShow?show=${cur_result["showid"]}">$cur_result["show_name"]</a>
#if int($cur_result["paused"]):
<span class="pause">[paused]</span>
#end if
</td>
<td class="nowrap" align="center"><%="%02ix%02i" % (int(cur_result["season"]), int(cur_result["episode"])) %></td>
<td>$cur_result["name"]</td>
<td>
#if $cur_result["description"] != "" and $cur_result["description"] != None:
<img alt="" src="$sbRoot/images/info32.png" height="16" width="16" class="plotInfo" id="plot_info_<%=str(cur_result["showid"])+"_"+str(cur_result["season"])+"_"+str(cur_result["episode"])%>" />
#end if
$cur_result["name"]
</td>
<td align="center">$cur_result["network"]</td>
<td align="center">
#if int($cur_result["quality"]) in $qualityPresets:
......
......@@ -146,12 +146,13 @@ Change selected episodes to
</td>
<td align="center"><img src="$sbRoot/images/#if $epResult["hasnfo"] == 1 then "nfo.gif\" alt=\"Y" else "nfo-no.gif\" alt=\"N"#" width="23" height="11" /></td>
<td align="center"><img src="$sbRoot/images/#if $epResult["hastbn"] == 1 then "tbn.gif\" alt=\"Y" else "tbn-no.gif\" alt=\"N"#" width="23" height="11" /></td>
#if $epResult["description"] != "" and $epResult["description"] != None:
<td align="center"><span class="plotInfo" id="plot_info_$show.tvdbid<%="_"+str(epResult["season"])+"_"+str(epResult["episode"])%>">$epResult["episode"]</span></td>
#else:
<td align="center">$epResult["episode"]</td>
<td>
$epResult["name"]
#if $epResult["description"] != "" and $epResult["description"] != None:
<img src="$sbRoot/images/info32.png" height="16" class="plotInfo" alt="" id="plot_info_$show.tvdbid<%="_"+str(epResult["season"])+"_"+str(epResult["episode"])%>" />
#end if
<td>$epResult["name"]</td>
</td>
<td align="center" class="nowrap">#if int($epResult["airdate"]) == 1 then "never" else $datetime.date.fromordinal(int($epResult["airdate"]))#</td>
<td>
#if $epLoc and $show._location and $epLoc.lower().startswith($show._location.lower()):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment