mirror of
https://github.com/moparisthebest/SickRage
synced 2025-01-07 03:48:02 -05:00
[New GUI] Prevent Airdate column to wrap
As I posted here: https://sickrage.tv/forums/forum/main-category/latest-news/8894-feedback-on-new-skin?p=11055#post11055 Next Ep Name must wrap. Some shows has a too long description: "Charlie and the Terrible, Horrible, No Good, Very Bad Thanksgiving" for example. Working on Chrome and IE
This commit is contained in:
parent
8320672669
commit
37012dd331
@ -167,7 +167,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<th>Airdate</th>
|
<th>Airdate</th>
|
||||||
<th>Show</th>
|
<th>Show</th>
|
||||||
<th class="nowrap">Next Ep</th>
|
<th nowrap="nowrap">Next Ep</th>
|
||||||
<th>Next Ep Name</th>
|
<th>Next Ep Name</th>
|
||||||
<th>Network</th>
|
<th>Network</th>
|
||||||
<th>Quality</th>
|
<th>Quality</th>
|
||||||
@ -206,17 +206,17 @@
|
|||||||
<!-- start $cur_result['show_name'] //-->
|
<!-- start $cur_result['show_name'] //-->
|
||||||
<tr class="$show_div">
|
<tr class="$show_div">
|
||||||
## forced to use a div to wrap airdate, the column sort went crazy with a span
|
## forced to use a div to wrap airdate, the column sort went crazy with a span
|
||||||
<td align="center" class="nowrap">
|
<td align="center" nowrap="nowrap">
|
||||||
<div class="${fuzzydate}">$sbdatetime.sbdatetime.sbfdatetime($cur_result['localtime']).decode($sickbeard.SYS_ENCODING)</div><span class="sort_data">$time.mktime($cur_result['localtime'].timetuple())</span>
|
<div class="${fuzzydate}">$sbdatetime.sbdatetime.sbfdatetime($cur_result['localtime']).decode($sickbeard.SYS_ENCODING)</div><span class="sort_data">$time.mktime($cur_result['localtime'].timetuple())</span>
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td class="tvShow"><a href="$sbRoot/home/displayShow?show=${cur_result['showid']}">$cur_result['show_name']</a>
|
<td class="tvShow" nowrap="nowrap"><a href="$sbRoot/home/displayShow?show=${cur_result['showid']}">$cur_result['show_name']</a>
|
||||||
#if int($cur_result['paused']):
|
#if int($cur_result['paused']):
|
||||||
<span class="pause">[paused]</span>
|
<span class="pause">[paused]</span>
|
||||||
#end if
|
#end if
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td class="nowrap" align="center">
|
<td nowrap="nowrap" align="center">
|
||||||
<%= 'S%02iE%02i' % (int(cur_result['season']), int(cur_result['episode'])) %>
|
<%= 'S%02iE%02i' % (int(cur_result['season']), int(cur_result['episode'])) %>
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user