mirror of
https://github.com/moparisthebest/SickRage
synced 2024-12-13 03:22:22 -05:00
Finally thanks to the new error handlers we have resolved the dredded issue 500 errors, enjoy!
This commit is contained in:
parent
f91569ec84
commit
2b0b0dd885
@ -296,7 +296,7 @@ $myShowList.sort(lambda x, y: cmp(x.name, y.name))
|
||||
//-->
|
||||
</script>
|
||||
</td>
|
||||
<td align="center"><img src="$sbRoot/images/#if int($curShow.paused) == 0 and "Ended" not in $curShow.status then "yes16.png\" alt=\"Y\"" else "no16.png\" alt=\"N\""# width="16" height="16" /></td>
|
||||
<td align="center"><img src="$sbRoot/images/#if int($curShow.paused) == 0 and $curShow.status != "Ended" then "yes16.png\" alt=\"Y\"" else "no16.png\" alt=\"N\""# width="16" height="16" /></td>
|
||||
<td align="center" style="color: #555555; font-weight: bold;">$curShow.status</td>
|
||||
</tr>
|
||||
|
||||
|
@ -12,7 +12,7 @@
|
||||
|
||||
#if $sickbeard.showList:
|
||||
#set $numShows = len($sickbeard.showList)
|
||||
#set $numGoodShows = len([x for x in $sickbeard.showList if x.paused == 0 and "Ended" not in x.status])
|
||||
#set $numGoodShows = len([x for x in $sickbeard.showList if x.paused == 0 and x.status != "Ended"])
|
||||
#else
|
||||
#set $numShows = 0
|
||||
#set $numGoodShows = 0
|
||||
|
Loading…
Reference in New Issue
Block a user