mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
Fix styling in templates.
This commit is contained in:
@@ -8,7 +8,7 @@ if (!$page->users->isLoggedIn())
|
||||
|
||||
|
||||
$moviecats = $cat->getChildren(Category::CAT_PARENT_MOVIE);
|
||||
$mtmp = array();
|
||||
$mtmp = [];
|
||||
foreach($moviecats as $mcat) {
|
||||
$mtmp[$mcat['id']] = $mcat;
|
||||
}
|
||||
@@ -23,7 +23,7 @@ $cpurl = $user['cp_url'];
|
||||
$page->smarty->assign('cpapi', $cpapi);
|
||||
$page->smarty->assign('cpurl', $cpurl);
|
||||
|
||||
$catarray = array();
|
||||
$catarray = [];
|
||||
if ($category != -1) $catarray[] = $category;
|
||||
|
||||
$page->smarty->assign('catlist', $mtmp);
|
||||
@@ -35,7 +35,7 @@ $offset = (isset($_REQUEST["offset"]) && ctype_digit($_REQUEST['offset'])) ? $_R
|
||||
$ordering = $movie->getMovieOrdering();
|
||||
$orderby = isset($_REQUEST["ob"]) && in_array($_REQUEST['ob'], $ordering) ? $_REQUEST["ob"] : '';
|
||||
|
||||
$results = $movies = array();
|
||||
$results = $movies = [];
|
||||
$results = $movie->getMovieRange($catarray, $offset, ITEMS_PER_COVER_PAGE, $orderby, -1, $page->userdata["categoryexclusions"]);
|
||||
foreach($results as $result) {
|
||||
$result['genre'] = $movie->makeFieldLinks($result, 'genre');
|
||||
|
||||
@@ -74,7 +74,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<table class="data table table-condensed table-striped" cellspacing="0"
|
||||
<table class="data table table-condensed table-striped table-responsive table-hover" cellspacing="0"
|
||||
cellpadding="0" style="table-layout: auto;">
|
||||
<thead>
|
||||
<tr>
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
<div class="col-lg-12 portlets">
|
||||
<div class="panel">
|
||||
<div class="panel-content pagination2">
|
||||
<table class="table table-condensed table-striped sortable responsive"
|
||||
<table class="data table table-condensed table-striped sortable table-responsive table-hover"
|
||||
style="table-layout: auto;" data-sort-order="desc">
|
||||
<thead>
|
||||
<tr>
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
<div class="col-lg-12 portlets">
|
||||
<div class="panel">
|
||||
<div class="panel-content pagination2">
|
||||
<table style="width:100%;" class="data table table-condensed table-striped" id="browsetable">
|
||||
<table style="width:100%;" class="data table table-condensed table-striped table-responsive table-hover" id="browsetable">
|
||||
<tr>
|
||||
<th width="50"><input id="chkSelectAll" type="checkbox" class="nzb_check_all"/><label
|
||||
for="chkSelectAll" style="display:none;">Select All</label></th>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{if $data|@count > 0}
|
||||
<table class="table table-striped table-condensed" id="coverstable">
|
||||
<table class="data table table-striped table-condensed table-responsive table-hover" id="coverstable">
|
||||
<tr>
|
||||
<th></th>
|
||||
<th>Name</th>
|
||||
@@ -12,7 +12,7 @@
|
||||
|
||||
<div>
|
||||
<img class="shadow"
|
||||
src="{if $result['cover'] ==""}{$serverroot}templates/charisma/images/nocover.png{else}{$result['cover']}{/if}"
|
||||
src="{if $result['cover'] ==""}{$serverroot}templates/omicron/images/nocover.png{else}{$result['cover']}{/if}"
|
||||
width="120" border="0" alt="{$result['title']|escape:"htmlall"}"/>
|
||||
|
||||
<div>
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
</p>
|
||||
|
||||
{if $movies|@count > 0}
|
||||
<table class="table table-condensed table-striped table-sortable responsive" id="browsetable">
|
||||
<table class="table table-condensed table-striped table-sortable table-responsive table-hover" id="browsetable">
|
||||
<tr>
|
||||
|
||||
<th></th>
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<center>
|
||||
<div class="btn-group">
|
||||
<a class="btn btn-sm btn-default" title="View available TV series" href="{$smarty.const.WWW_TOP}/series">View
|
||||
all series</a>
|
||||
@@ -20,53 +19,54 @@
|
||||
href="{$smarty.const.WWW_TOP}/rss?t=-3&dl=1&i={$userdata.id}&r={$userdata.rsstoken}">RSS Feed for
|
||||
My Shows <i class="fa fa-rss"></i></a>
|
||||
</div>
|
||||
</center>
|
||||
<br>
|
||||
<hr>
|
||||
|
||||
{if $shows|@count > 0}
|
||||
<div class="row">
|
||||
<div class="col-lg-12 portlets">
|
||||
<div class="panel">
|
||||
<div class="panel-content pagination2">
|
||||
<table class="table table-striped table-condensed">
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th width="80">Category</th>
|
||||
<th width="110">Added</th>
|
||||
<th width="130" class="mid">Options</th>
|
||||
</tr>
|
||||
<div class="box-body">
|
||||
<div class="row">
|
||||
<div class="col-lg-12 portlets">
|
||||
<div class="panel">
|
||||
<div class="panel-content pagination2">
|
||||
<table class="data table table-striped table-condensed table-responsive table-hover">
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th width="80">Category</th>
|
||||
<th width="110">Added</th>
|
||||
<th width="130" class="mid">Options</th>
|
||||
</tr>
|
||||
|
||||
{foreach from=$shows item=show}
|
||||
<tr>
|
||||
<td>
|
||||
<a title="View details"
|
||||
href="{$smarty.const.WWW_TOP}/series/{$show.rageid}{if $show.categoryid != ''}?t={$show.categoryid|replace:"|":","}{/if}">{$show.releasetitle|escape:"htmlall"|wordwrap:75:"\n":true}</a>
|
||||
</td>
|
||||
<td>
|
||||
<span class="label label-default">{if $show.categoryNames != ''}{$show.categoryNames|escape:"htmlall"}{else}All{/if}</span>
|
||||
</td>
|
||||
<td title="Added on {$show.createddate}">{$show.createddate|date_format}</td>
|
||||
<td>
|
||||
<div class="btn-group">
|
||||
<a class="btn btn-xs btn-warning"
|
||||
href="{$smarty.const.WWW_TOP}/myshows/edit/{$show.rageid}" class="myshows"
|
||||
rel="edit" name="series{$show.rageid}" title="Edit Categories">Edit</a>
|
||||
<a class="btn btn-xs btn-danger confirm_action"
|
||||
href="{$smarty.const.WWW_TOP}/myshows/delete/{$show.rageid}" class="myshows"
|
||||
rel="remove" name="series{$show.rageid}" title="Remove from My Shows">Remove</a>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
{foreach from=$shows item=show}
|
||||
<tr>
|
||||
<td>
|
||||
<a title="View details"
|
||||
href="{$smarty.const.WWW_TOP}/series/{$show.rageid}{if $show.categoryid != ''}?t={$show.categoryid|replace:"|":","}{/if}">{$show.releasetitle|escape:"htmlall"|wordwrap:75:"\n":true}</a>
|
||||
</td>
|
||||
<td>
|
||||
<span class="label label-default">{if $show.categoryNames != ''}{$show.categoryNames|escape:"htmlall"}{else}All{/if}</span>
|
||||
</td>
|
||||
<td title="Added on {$show.createddate}">{$show.createddate|date_format}</td>
|
||||
<td>
|
||||
<div class="btn-group">
|
||||
<a class="btn btn-xs btn-warning myshows"
|
||||
href="{$smarty.const.WWW_TOP}/myshows/edit/{$show.rageid}"
|
||||
rel="edit" name="series{$show.rageid}" title="Edit Categories">Edit</a>
|
||||
<a class="btn btn-xs btn-danger confirm_action myshows"
|
||||
href="{$smarty.const.WWW_TOP}/myshows/delete/{$show.rageid}"
|
||||
rel="remove" name="series{$show.rageid}"
|
||||
title="Remove from My Shows">Remove</a>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
|
||||
</table>
|
||||
|
||||
{else}
|
||||
<div class="alert alert-danger">
|
||||
<strong>Sorry!</strong> No shows bookmarked yet!
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{else}
|
||||
<div class="alert alert-danger">
|
||||
<strong>Sorry!</strong> No shows bookmarked yet!
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
@@ -9,285 +9,338 @@
|
||||
value="{$lastSearch|escape:'html'}">
|
||||
<span class="input-group-btn">
|
||||
<button type="submit" value="Go" class="btn btn-default">
|
||||
<i class="icon-search"></i>
|
||||
<i class="fa fa-search"></i>
|
||||
</button>
|
||||
</span>
|
||||
</div>
|
||||
</form>
|
||||
{$pager}
|
||||
<table class="table table-striped table-bordered bootstrap-datatable datatable responsive">
|
||||
<tr>
|
||||
<th style="text-align:center;width:125px">Date</th>
|
||||
<th style="text-align:center">Title</th>
|
||||
<th style="width:100px;text-align:center;">Category</th>
|
||||
<th style="width:120px;text-align:center;">Source</th>
|
||||
<th style="width:70px;text-align:center;">Reqid</th>
|
||||
<th style="width:70px;text-align:center;">Size</th>
|
||||
<th style="width:70px;text-align:center;">Files</th>
|
||||
<th style="width:25px"></th>
|
||||
<th style="width:25px"></th>
|
||||
</tr>
|
||||
{foreach from=$results item=result}
|
||||
<tr class="{cycle values=",alt"}">
|
||||
<td class="prehash" style="text-align:center;">
|
||||
{$result.predate|date_format:"%Y-%m-%d %H:%M:%S"}
|
||||
</td>
|
||||
<td class="prehash" style="text-align:center;">
|
||||
{if isset($result.guid)}
|
||||
<a style="font-style:italic;text-decoration:underline;color:#{if $result.nuked == 1}009933{elseif $result.nuked > 1}990000{/if};"
|
||||
class="title" title="View details"
|
||||
href="{$smarty.const.WWW_TOP}/details/{$result.guid}/{$result.title|escape:"htmlall"}">
|
||||
<span title="{if $result.nuked == 1}UNNUKED: {$result.nukereason|escape:"htmlall"}{elseif $result.nuked > 1}NUKED: {$result.nukereason|escape:"htmlall"}{else}{$result.title|escape:"htmlall"}{/if}">{$result.title|escape:"htmlall"}</span>
|
||||
</a>
|
||||
{else}
|
||||
<span style="color:#{if $result.nuked == 1}009933{elseif $result.nuked > 1}990000{/if};"
|
||||
title="{if $result.nuked == 1}UNNUKED: {$result.nukereason|escape:"htmlall"}{elseif $result.nuked > 1}NUKED: {$result.nukereason|escape:"htmlall"}{else}{$result.title|escape:"htmlall"}{/if}">{$result.title|escape:"htmlall"}</span>
|
||||
{/if}
|
||||
</td>
|
||||
<td class="prehash" style="text-align:center;">
|
||||
{* Console *}
|
||||
{* Xbox 360 *}
|
||||
{if {$result.category} == 'XBOX360'}
|
||||
<a class="title" title="View category XBOX 360" href="{$smarty.const.WWW_TOP}/browse?t=1050">Console
|
||||
Xbox
|
||||
360</a>
|
||||
{* Movies *}
|
||||
{elseif in_array({$result.category}, array('Movies'))}
|
||||
<a class="title" title="View category Movies"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=2000">Movies</a>
|
||||
{* SD *}
|
||||
{elseif in_array({$result.category}, array('movies-sd', 'Movies: STD', 'XVid'))}
|
||||
<a class="title" title="View category Movies SD" href="{$smarty.const.WWW_TOP}/browse?t=2030">Movies
|
||||
SD</a>
|
||||
{* HD *}
|
||||
{elseif in_array({$result.category}, array('Movies: HD', 'X264'))}
|
||||
<a class="title" title="View category Movies HD" href="{$smarty.const.WWW_TOP}/browse?t=2040">Movies
|
||||
HD</a>
|
||||
{* BluRay *}
|
||||
{elseif in_array({$result.category}, array('BLURAY'))}
|
||||
<a class="title" title="View category BluRay" href="{$smarty.const.WWW_TOP}/browse?t=2060">Movies
|
||||
BluRay</a>
|
||||
{* DVD *}
|
||||
{elseif in_array({$result.category}, array('DVDR', 'Movies: DVD'))}
|
||||
<a class="title" title="View category DVDR" href="{$smarty.const.WWW_TOP}/browse?t=2070">DVD</a>
|
||||
{* Audio *}
|
||||
{elseif in_array({$result.category}, array('music-audio'))}
|
||||
<a class="title" title="View category Music" href="{$smarty.const.WWW_TOP}/music">Audio</a>
|
||||
{* MP3 *}
|
||||
{elseif in_array({$result.category}, array('MP3', 'Music: MP3'))}
|
||||
<a class="title" title="View category MP3" href="{$smarty.const.WWW_TOP}/browse?t=3010">MP3</a>
|
||||
{* Video *}
|
||||
{elseif in_array({$result.category}, array('MVid', 'Music: MVid'))}
|
||||
<a class="title" title="View category Audio Video" href="{$smarty.const.WWW_TOP}/browse?t=3020">Music
|
||||
Videos</a>
|
||||
{* Audiobook *}
|
||||
{elseif in_array({$result.category}, array('audiobook', 'Audiobook'))}
|
||||
<a class="title" title="View category Audiobook" href="{$smarty.const.WWW_TOP}/browse?t=3030">Audiobook</a>
|
||||
{* Lossless *}
|
||||
{elseif in_array({$result.category}, array('FLAC', 'Music: FLAC'))}
|
||||
<a class="title" title="View category Music Lossless" href="{$smarty.const.WWW_TOP}/browse?t=3040">Lossless
|
||||
Music</a>
|
||||
{* PC *}
|
||||
{* 0day *}
|
||||
{elseif in_array({$result.category}, array('0DAY', 'APPS', 'Apps: PC', 'Apps: Linux', 'DOX'))}
|
||||
<a class="title" title="View category PC 0day" href="{$smarty.const.WWW_TOP}/browse?t=4010">PC
|
||||
0DAY</a>
|
||||
{* Mac *}
|
||||
{elseif in_array({$result.category}, array('Apps: MAC', 'Games: MAC'))}
|
||||
<a class="title" title="View category PC Mac" href="{$smarty.const.WWW_TOP}/browse?t=4030">PC
|
||||
Mac</a>
|
||||
{* Phone-Other *}
|
||||
{elseif in_array({$result.category}, array('Apps: Phone', 'PDA'))}
|
||||
<a class="title" title="View category Phone Other" href="{$smarty.const.WWW_TOP}/browse?t=4040">Phone
|
||||
Other</a>
|
||||
{* Games *}
|
||||
{elseif in_array({$result.category}, array('GAMES', 'Games: PC', 'Games: Other'))}
|
||||
<a class="title" title="View category PC Games" href="{$smarty.const.WWW_TOP}/browse?t=4050">PC
|
||||
Games</a>
|
||||
{* TV *}
|
||||
{elseif in_array({$result.category}, array('TV'))}
|
||||
<a class="title" title="View category TV" href="{$smarty.const.WWW_TOP}/browse?t=5000">TV</a>
|
||||
{* SD *}
|
||||
{elseif in_array({$result.category}, array('TV-DVDRIP', 'tv-sd', 'TV: STD', 'TV-XVid'))}
|
||||
<a class="title" title="View category TV SD" href="{$smarty.const.WWW_TOP}/browse?t=5030">SDTV</a>
|
||||
{* HD *}
|
||||
{elseif in_array({$result.category}, array('tv-hd', 'TV: HD', 'TV-x264', 'TV-X264'))}
|
||||
<a class="title" title="View category TV HD" href="{$smarty.const.WWW_TOP}/browse?t=5040">HDTV</a>
|
||||
{* XXX *}
|
||||
{elseif in_array({$result.category}, array('XXX'))}
|
||||
<a class="title" title="View category XXX" href="{$smarty.const.WWW_TOP}/browse?t=6000">XXX</a>
|
||||
{* DVD *}
|
||||
{elseif in_array({$result.category}, array('XXX: DVD'))}
|
||||
<a class="title" title="View category XXX DVD" href="{$smarty.const.WWW_TOP}/browse?t=6010">XXX
|
||||
DVD</a>
|
||||
{* XviD *}
|
||||
{elseif in_array({$result.category}, array('XXX: SD-CLIPS', 'XXX: MOVIES-SD'))}
|
||||
<a class="title" title="View category XXX XviD" href="{$smarty.const.WWW_TOP}/browse?t=6030">XXX
|
||||
SD</a>
|
||||
{* x264 *}
|
||||
{elseif in_array({$result.category}, array('XXX: HD-CLIPS', 'XXX: MOVIES-HD'))}
|
||||
<a class="title" title="View category XXX x264" href="{$smarty.const.WWW_TOP}/browse?t=6040">XXX
|
||||
HD</a>
|
||||
{* Other *}
|
||||
{elseif in_array({$result.category}, array('xxx-videos'))}
|
||||
<a class="title" title="View category XXX Other" href="{$smarty.const.WWW_TOP}/browse?t=6050">XXX
|
||||
Other</a>
|
||||
{* Imageset *}
|
||||
{elseif in_array({$result.category}, array('XXX-IMGSET'))}
|
||||
<a class="title" title="View category XXX Imageset" href="{$smarty.const.WWW_TOP}/browse?t=6060">XXX
|
||||
Imagesets</a>
|
||||
{* Books *}
|
||||
{elseif in_array({$result.category}, array('EBOOK'))}
|
||||
<a class="title" title="View category Books" href="{$smarty.const.WWW_TOP}/browse?t=8000">Ebooks</a>
|
||||
{* Other *}
|
||||
{elseif in_array({$result.category}, array('Other: E-Books'))}
|
||||
<a class="title" title="View category Books Other" href="{$smarty.const.WWW_TOP}/browse?t=8050">Ebooks
|
||||
Other</a>
|
||||
{elseif in_array({$result.category}, array('', 'PRE'))}
|
||||
N/A
|
||||
{else}
|
||||
{$result.category}
|
||||
{/if}
|
||||
</td>
|
||||
<td class="prehash" style="text-align:center;">
|
||||
{if {$result.source} == abgx}
|
||||
<a title="Visit abgx" href="{$site->dereferrer_link}http://www.abgx.net/rss/x360/posted.rss"
|
||||
target="_blank">
|
||||
abgx.net
|
||||
</a>
|
||||
{elseif in_array({$result.source}, array('abErotica', 'abMooVee', 'abTeeVee', 'abForeign'))}
|
||||
<a title="Visit allfilled {$result.source}"
|
||||
href="{$site->dereferrer_link}http://{$result.source}.allfilled.com/search.php?q={$result.title}&Search=Search"
|
||||
target="_blank">
|
||||
{$result.source}
|
||||
</a>
|
||||
{elseif $result.source|strpos:'#a.b.' !== false}
|
||||
<a title="Visit {$result.source} on IRC"
|
||||
href="irc://irc.Prison.NET:6667/{str_replace('#a.b.', 'alt.binaries.', {$result.source})}"
|
||||
target="_blank">
|
||||
{$result.source}
|
||||
</a>
|
||||
{elseif {$result.source} == omgwtfnzbs}
|
||||
<a title="Visit omgwtfnzbs" href="{$site->dereferrer_link}http://rss.omgwtfnzbs.org/rss-info.php"
|
||||
target="_blank">
|
||||
omgwtfnzbs
|
||||
</a>
|
||||
{elseif {$result.source} == orlydb}
|
||||
<a title="Visit ORLYDB" href="{$site->dereferrer_link}http://orlydb.com/?q={$result.title}"
|
||||
target="_blank"
|
||||
target="_blank">
|
||||
ORLYDB
|
||||
</a>
|
||||
{elseif {$result.source} == predbme}
|
||||
<a title="Visit PreDB.me" href="{$site->dereferrer_link}http://predb.me/?search={$result.title}"
|
||||
target="_blank">
|
||||
PreDB
|
||||
</a>
|
||||
{elseif {$result.source} == prelist}
|
||||
<a title="Visit Prelist"
|
||||
href="{$site->dereferrer_link}http://www.prelist.ws/?search={$result.title}"
|
||||
target="_blank">
|
||||
Prelist
|
||||
</a>
|
||||
{elseif {$result.source} == "#Pre@zenet"}
|
||||
<a title="Visit zenet on IRC" href="irc://irc.zenet.org:6667/Pre" target="_blank">
|
||||
Zenet IRC
|
||||
</a>
|
||||
{elseif {$result.source} == "#pre@corrupt"}
|
||||
<a title="Visit corrupt on IRC" href="irc://irc.corrupt-net.org:6667/pre" target="_blank">
|
||||
Corrupt-Net
|
||||
</a>
|
||||
{elseif {$result.source} == srrdb}
|
||||
<a title="Visit srrDB" href="{$site->dereferrer_link}http://www.srrdb.com/browse/{$result.title}"
|
||||
target="_blank">
|
||||
srrDB
|
||||
</a>
|
||||
{elseif {$result.source} == "#scnzb"}
|
||||
<a title="Visit srrDB" href="irc://irc.Prison.NET:6667/scnzb" target="_blank">
|
||||
srrDB
|
||||
</a>
|
||||
{elseif {$result.source} == "#tvnzb"}
|
||||
<a title="Visit srrDB" href="irc://irc.Prison.NET:6667/tvnzb" target="_blank">
|
||||
srrDB
|
||||
</a>
|
||||
{elseif {$result.source} == "usenet-crawler"}
|
||||
<a title="Visit Usenet-Crawler"
|
||||
href="{$site->dereferrer_link}http://www.usenet-crawler.com/predb?q={$result.title}"
|
||||
target="_blank">
|
||||
Usenet-Crawler
|
||||
</a>
|
||||
{elseif {$result.source} == womble}
|
||||
<a title="Visit Womble" href="{$site->dereferrer_link}http://www.newshost.co.za/?s={$result.title}"
|
||||
target="_blank">
|
||||
Womble
|
||||
</a>
|
||||
{elseif {$result.source} == zenet}
|
||||
<a title="Visit ZEnet" href="{$site->dereferrer_link}http://pre.zenet.org/?search={$result.title}"
|
||||
target="_blank">
|
||||
ZEnet
|
||||
</a>
|
||||
{else}
|
||||
{$result.source}
|
||||
{/if}
|
||||
</td>
|
||||
<td class="prehash" style="text-align:center;">
|
||||
{if is_numeric({$result.requestid}) && {$result.requestid} != 0}
|
||||
<a
|
||||
class="requestid"
|
||||
title="{$result.requestid}"
|
||||
href="{$smarty.const.WWW_TOP}/search?searchadvr=&searchadvsubject={$result.requestid}
|
||||
<div class="box-body">
|
||||
<div class="box-inner">
|
||||
<div class="row">
|
||||
<div class="col-xlg-12 portlets">
|
||||
<div class="panel">
|
||||
<div class="panel-content pagination2">
|
||||
<div class="row">
|
||||
<div class="col-md-8">
|
||||
<table class="data table table-condensed table-striped table-responsive table-hover">
|
||||
<tr>
|
||||
<th style="width: auto"> Date</th>
|
||||
<th style="width: auto"> Title</th>
|
||||
<th style="width: auto"> Category</th>
|
||||
<th style="width: auto"> Source</th>
|
||||
<th style="width: auto"> Reqid</th>
|
||||
<th style="width: auto"> Size</th>
|
||||
<th style="width: auto"> Files</th>
|
||||
<th></th>
|
||||
<th></th>
|
||||
</tr>
|
||||
{foreach from=$results item=result}
|
||||
<tr class="{cycle values=",alt"}">
|
||||
<td class="prehash" style="text-align:center;">
|
||||
{$result.predate|date_format:"%Y-%m-%d %H:%M:%S"}
|
||||
</td>
|
||||
<td class="prehash" style="text-align:center;">
|
||||
{if isset($result.guid)}
|
||||
<a style="font-style:italic;text-decoration:underline;color:#{if $result.nuked == 1}009933{elseif $result.nuked > 1}990000{/if};"
|
||||
class="title" title="View details"
|
||||
href="{$smarty.const.WWW_TOP}/details/{$result.guid}/{$result.title|escape:"htmlall"}">
|
||||
<span title="{if $result.nuked == 1}UNNUKED: {$result.nukereason|escape:"htmlall"}{elseif $result.nuked > 1}NUKED: {$result.nukereason|escape:"htmlall"}{else}{$result.title|escape:"htmlall"}{/if}">{$result.title|escape:"htmlall"}</span>
|
||||
</a>
|
||||
{else}
|
||||
<span style="color:#{if $result.nuked == 1}009933{elseif $result.nuked > 1}990000{/if};"
|
||||
title="{if $result.nuked == 1}UNNUKED: {$result.nukereason|escape:"htmlall"}{elseif $result.nuked > 1}NUKED: {$result.nukereason|escape:"htmlall"}{else}{$result.title|escape:"htmlall"}{/if}">{$result.title|escape:"htmlall"}</span>
|
||||
{/if}
|
||||
</td>
|
||||
<td class="prehash" style="text-align:center;">
|
||||
{* Console *}
|
||||
{* Xbox 360 *}
|
||||
{if {$result.category} == 'XBOX360'}
|
||||
<a class="title" title="View category XBOX 360"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=1050">Console
|
||||
Xbox
|
||||
360</a>
|
||||
{* Movies *}
|
||||
{elseif in_array({$result.category}, array('Movies'))}
|
||||
<a class="title" title="View category Movies"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=2000">Movies</a>
|
||||
{* SD *}
|
||||
{elseif in_array({$result.category}, array('movies-sd', 'Movies: STD', 'XVid'))}
|
||||
<a class="title" title="View category Movies SD"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=2030">Movies
|
||||
SD</a>
|
||||
{* HD *}
|
||||
{elseif in_array({$result.category}, array('Movies: HD', 'X264'))}
|
||||
<a class="title" title="View category Movies HD"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=2040">Movies
|
||||
HD</a>
|
||||
{* BluRay *}
|
||||
{elseif in_array({$result.category}, array('BLURAY'))}
|
||||
<a class="title" title="View category BluRay"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=2060">Movies
|
||||
BluRay</a>
|
||||
{* DVD *}
|
||||
{elseif in_array({$result.category}, array('DVDR', 'Movies: DVD'))}
|
||||
<a class="title" title="View category DVDR"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=2070">DVD</a>
|
||||
{* Audio *}
|
||||
{elseif in_array({$result.category}, array('music-audio'))}
|
||||
<a class="title" title="View category Music"
|
||||
href="{$smarty.const.WWW_TOP}/music">Audio</a>
|
||||
{* MP3 *}
|
||||
{elseif in_array({$result.category}, array('MP3', 'Music: MP3'))}
|
||||
<a class="title" title="View category MP3"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=3010">MP3</a>
|
||||
{* Video *}
|
||||
{elseif in_array({$result.category}, array('MVid', 'Music: MVid'))}
|
||||
<a class="title" title="View category Audio Video"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=3020">Music
|
||||
Videos</a>
|
||||
{* Audiobook *}
|
||||
{elseif in_array({$result.category}, array('audiobook', 'Audiobook'))}
|
||||
<a class="title" title="View category Audiobook"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=3030">Audiobook</a>
|
||||
{* Lossless *}
|
||||
{elseif in_array({$result.category}, array('FLAC', 'Music: FLAC'))}
|
||||
<a class="title" title="View category Music Lossless"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=3040">Lossless
|
||||
Music</a>
|
||||
{* PC *}
|
||||
{* 0day *}
|
||||
{elseif in_array({$result.category}, array('0DAY', 'APPS', 'Apps: PC', 'Apps: Linux', 'DOX'))}
|
||||
<a class="title" title="View category PC 0day"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=4010">PC
|
||||
0DAY</a>
|
||||
{* Mac *}
|
||||
{elseif in_array({$result.category}, array('Apps: MAC', 'Games: MAC'))}
|
||||
<a class="title" title="View category PC Mac"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=4030">PC
|
||||
Mac</a>
|
||||
{* Phone-Other *}
|
||||
{elseif in_array({$result.category}, array('Apps: Phone', 'PDA'))}
|
||||
<a class="title" title="View category Phone Other"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=4040">Phone
|
||||
Other</a>
|
||||
{* Games *}
|
||||
{elseif in_array({$result.category}, array('GAMES', 'Games: PC', 'Games: Other'))}
|
||||
<a class="title" title="View category PC Games"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=4050">PC
|
||||
Games</a>
|
||||
{* TV *}
|
||||
{elseif in_array({$result.category}, array('TV'))}
|
||||
<a class="title" title="View category TV"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=5000">TV</a>
|
||||
{* SD *}
|
||||
{elseif in_array({$result.category}, array('TV-DVDRIP', 'tv-sd', 'TV: STD', 'TV-XVid'))}
|
||||
<a class="title" title="View category TV SD"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=5030">SDTV</a>
|
||||
{* HD *}
|
||||
{elseif in_array({$result.category}, array('tv-hd', 'TV: HD', 'TV-x264', 'TV-X264'))}
|
||||
<a class="title" title="View category TV HD"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=5040">HDTV</a>
|
||||
{* XXX *}
|
||||
{elseif in_array({$result.category}, array('XXX'))}
|
||||
<a class="title" title="View category XXX"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=6000">XXX</a>
|
||||
{* DVD *}
|
||||
{elseif in_array({$result.category}, array('XXX: DVD'))}
|
||||
<a class="title" title="View category XXX DVD"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=6010">XXX
|
||||
DVD</a>
|
||||
{* XviD *}
|
||||
{elseif in_array({$result.category}, array('XXX: SD-CLIPS', 'XXX: MOVIES-SD'))}
|
||||
<a class="title" title="View category XXX XviD"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=6030">XXX
|
||||
SD</a>
|
||||
{* x264 *}
|
||||
{elseif in_array({$result.category}, array('XXX: HD-CLIPS', 'XXX: MOVIES-HD'))}
|
||||
<a class="title" title="View category XXX x264"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=6040">XXX
|
||||
HD</a>
|
||||
{* Other *}
|
||||
{elseif in_array({$result.category}, array('xxx-videos'))}
|
||||
<a class="title" title="View category XXX Other"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=6050">XXX
|
||||
Other</a>
|
||||
{* Imageset *}
|
||||
{elseif in_array({$result.category}, array('XXX-IMGSET'))}
|
||||
<a class="title" title="View category XXX Imageset"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=6060">XXX
|
||||
Imagesets</a>
|
||||
{* Books *}
|
||||
{elseif in_array({$result.category}, array('EBOOK'))}
|
||||
<a class="title" title="View category Books"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=8000">Ebooks</a>
|
||||
{* Other *}
|
||||
{elseif in_array({$result.category}, array('Other: E-Books'))}
|
||||
<a class="title" title="View category Books Other"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=8050">Ebooks
|
||||
Other</a>
|
||||
{elseif in_array({$result.category}, array('', 'PRE'))}
|
||||
N/A
|
||||
{else}
|
||||
{$result.category}
|
||||
{/if}
|
||||
</td>
|
||||
<td class="prehash" style="text-align:center;">
|
||||
{if {$result.source} == abgx}
|
||||
<a title="Visit abgx"
|
||||
href="{$site->dereferrer_link}http://www.abgx.net/rss/x360/posted.rss"
|
||||
target="_blank">
|
||||
abgx.net
|
||||
</a>
|
||||
{elseif in_array({$result.source}, array('abErotica', 'abMooVee', 'abTeeVee', 'abForeign'))}
|
||||
<a title="Visit allfilled {$result.source}"
|
||||
href="{$site->dereferrer_link}http://{$result.source}.allfilled.com/search.php?q={$result.title}&Search=Search"
|
||||
target="_blank">
|
||||
{$result.source}
|
||||
</a>
|
||||
{elseif $result.source|strpos:'#a.b.' !== false}
|
||||
<a title="Visit {$result.source} on IRC"
|
||||
href="irc://irc.Prison.NET:6667/{str_replace('#a.b.', 'alt.binaries.', {$result.source})}"
|
||||
target="_blank">
|
||||
{$result.source}
|
||||
</a>
|
||||
{elseif {$result.source} == omgwtfnzbs}
|
||||
<a title="Visit omgwtfnzbs"
|
||||
href="{$site->dereferrer_link}http://rss.omgwtfnzbs.org/rss-info.php"
|
||||
target="_blank">
|
||||
omgwtfnzbs
|
||||
</a>
|
||||
{elseif {$result.source} == orlydb}
|
||||
<a title="Visit ORLYDB"
|
||||
href="{$site->dereferrer_link}http://orlydb.com/?q={$result.title}"
|
||||
target="_blank">
|
||||
ORLYDB
|
||||
</a>
|
||||
{elseif {$result.source} == predbme}
|
||||
<a title="Visit PreDB.me"
|
||||
href="{$site->dereferrer_link}http://predb.me/?search={$result.title}"
|
||||
target="_blank">
|
||||
PreDB
|
||||
</a>
|
||||
{elseif {$result.source} == prelist}
|
||||
<a title="Visit Prelist"
|
||||
href="{$site->dereferrer_link}http://www.prelist.ws/?search={$result.title}"
|
||||
target="_blank">
|
||||
Prelist
|
||||
</a>
|
||||
{elseif {$result.source} == "#Pre@zenet"}
|
||||
<a title="Visit zenet on IRC" href="irc://irc.zenet.org:6667/Pre"
|
||||
target="_blank">
|
||||
Zenet IRC
|
||||
</a>
|
||||
{elseif {$result.source} == "#pre@corrupt"}
|
||||
<a title="Visit corrupt on IRC"
|
||||
href="irc://irc.corrupt-net.org:6667/pre"
|
||||
target="_blank">
|
||||
Corrupt-Net
|
||||
</a>
|
||||
{elseif {$result.source} == srrdb}
|
||||
<a title="Visit srrDB"
|
||||
href="{$site->dereferrer_link}http://www.srrdb.com/browse/{$result.title}"
|
||||
target="_blank">
|
||||
srrDB
|
||||
</a>
|
||||
{elseif {$result.source} == "#scnzb"}
|
||||
<a title="Visit srrDB" href="irc://irc.Prison.NET:6667/scnzb"
|
||||
target="_blank">
|
||||
srrDB
|
||||
</a>
|
||||
{elseif {$result.source} == "#tvnzb"}
|
||||
<a title="Visit srrDB" href="irc://irc.Prison.NET:6667/tvnzb"
|
||||
target="_blank">
|
||||
srrDB
|
||||
</a>
|
||||
{elseif {$result.source} == "usenet-crawler"}
|
||||
<a title="Visit Usenet-Crawler"
|
||||
href="{$site->dereferrer_link}http://www.usenet-crawler.com/predb?q={$result.title}"
|
||||
target="_blank">
|
||||
Usenet-Crawler
|
||||
</a>
|
||||
{elseif {$result.source} == womble}
|
||||
<a title="Visit Womble"
|
||||
href="{$site->dereferrer_link}http://www.newshost.co.za/?s={$result.title}"
|
||||
target="_blank">
|
||||
Womble
|
||||
</a>
|
||||
{elseif {$result.source} == zenet}
|
||||
<a title="Visit ZEnet"
|
||||
href="{$site->dereferrer_link}http://pre.zenet.org/?search={$result.title}"
|
||||
target="_blank">
|
||||
ZEnet
|
||||
</a>
|
||||
{else}
|
||||
{$result.source}
|
||||
{/if}
|
||||
</td>
|
||||
<td class="prehash" style="text-align:center;">
|
||||
{if is_numeric({$result.requestid}) && {$result.requestid} != 0}
|
||||
<a
|
||||
class="requestid"
|
||||
title="{$result.requestid}"
|
||||
href="{$smarty.const.WWW_TOP}/search?searchadvr=&searchadvsubject={$result.requestid}
|
||||
&searchadvposter=&searchadvdaysnew=&searchadvdaysold=&searchadvgroups=-1&searchadvcat=-1
|
||||
&searchadvsizefrom=-1&searchadvsizeto=-1&searchadvhasnfo=0&searchadvhascomments=0&search_type=adv"
|
||||
>
|
||||
{$result.requestid}
|
||||
</a>
|
||||
{else}
|
||||
N/A
|
||||
{/if}
|
||||
</td>
|
||||
<td class="prehash" style="text-align:center;">
|
||||
{if not in_array({$result.size}, array('NULL', '', '0MB'))}
|
||||
{if strpos($result.size, 'MB') != false && {$result.size|regex_replace:"/(\.\d|,|MB)+/":''|count_characters} > 3}
|
||||
{math equation=($result.size|regex_replace:'/(\.\d|,|MB)+/':'' / 1024)|round}GB
|
||||
{else}
|
||||
{$result.size|regex_replace:"/(\.\d|,)+/":''}
|
||||
{/if}
|
||||
{else}
|
||||
N/A
|
||||
{/if}
|
||||
</td>
|
||||
<td class="prehash" style="text-align:center;">
|
||||
{if isset($result.files)}
|
||||
{$result.files}
|
||||
{else}
|
||||
N/A
|
||||
{/if}
|
||||
</td>
|
||||
<td class="prehash" style="text-align:center;">
|
||||
<a
|
||||
style="float: right;"
|
||||
title="NzbIndex"
|
||||
href="{$site->dereferrer_link}http://nzbindex.com/search/?q={$result.title}"
|
||||
target="_blank"
|
||||
>
|
||||
<img src="{$smarty.const.WWW_TOP}/templates/charisma/images/icons/nzbindex.png"/>
|
||||
|
||||
</a>
|
||||
</td>
|
||||
<td class="prehash" style="text-align:center;">
|
||||
<a
|
||||
style="float: right;"
|
||||
title="BinSearch"
|
||||
href="{$site->dereferrer_link}http://binsearch.info/?q={$result.title}"
|
||||
target="_blank"
|
||||
>
|
||||
<img src="{$smarty.const.WWW_TOP}/templates/charisma/images/icons/binsearch.png"/>
|
||||
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</table>
|
||||
<pager style="padding-bottom:10px;">
|
||||
>
|
||||
{$result.requestid}
|
||||
</a>
|
||||
{else}
|
||||
N/A
|
||||
{/if}
|
||||
</td>
|
||||
<td class="prehash" style="text-align:center;">
|
||||
{if not in_array({$result.size}, array('NULL', '', '0MB'))}
|
||||
{if strpos($result.size, 'MB') != false && {$result.size|regex_replace:"/(\.\d|,|MB)+/":''|count_characters} > 3}
|
||||
{math equation=($result.size|regex_replace:'/(\.\d|,|MB)+/':'' / 1024)|round}GB
|
||||
{else}
|
||||
{$result.size|regex_replace:"/(\.\d|,)+/":''}
|
||||
{/if}
|
||||
{else}
|
||||
N/A
|
||||
{/if}
|
||||
</td>
|
||||
<td class="prehash" style="text-align:center;">
|
||||
{if isset($result.files)}
|
||||
{$result.files}
|
||||
{else}
|
||||
N/A
|
||||
{/if}
|
||||
</td>
|
||||
<td class="prehash" style="text-align:center;">
|
||||
<a
|
||||
style="float: right;"
|
||||
title="NzbIndex"
|
||||
href="{$site->dereferrer_link}http://nzbindex.com/search/?q={$result.title}"
|
||||
target="_blank"
|
||||
>
|
||||
<img src="{$smarty.const.WWW_TOP}/templates/omicron/images/icons/nzbindex.png"/>
|
||||
|
||||
</a>
|
||||
</td>
|
||||
<td class="prehash" style="text-align:center;">
|
||||
<a
|
||||
style="float: right;"
|
||||
title="BinSearch"
|
||||
href="{$site->dereferrer_link}http://binsearch.info/?q={$result.title}"
|
||||
target="_blank"
|
||||
>
|
||||
<img src="{$smarty.const.WWW_TOP}/templates/omicron/images/icons/binsearch.png"/>
|
||||
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<div style="padding-bottom:10px;">
|
||||
{$pager}
|
||||
</pager>
|
||||
</div>
|
||||
@@ -27,7 +27,7 @@
|
||||
<tbody>
|
||||
<tr valign="top">
|
||||
<td>
|
||||
<table class="table table-condensed table-striped responsive">
|
||||
<table class="table table-condensed table-striped table-responsive table-hover">
|
||||
<tbody>
|
||||
<tr class="bg-primary">
|
||||
<td colspan="2" style="padding-left: 8px;"><strong>General</strong>
|
||||
@@ -67,7 +67,7 @@
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table class="table table-condensed table-striped responsive">
|
||||
<table class="data table table-condensed table-striped table-responsive table-hover">
|
||||
<tbody>
|
||||
<tr class="bg-primary">
|
||||
<td colspan="2" style="padding-left: 8px;"><strong>API &
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
<div class="alert alert-danger">{$error}</div>
|
||||
{/if}
|
||||
<ul class="nav nav-tabs nav-primary">
|
||||
<li class="active"><a href="#tab2_1" data-toggle="tab"><i class="fa fa-cogs"></i>
|
||||
<li class="active"><a href="#tab2_1" data-toggle="tab"><i class="fa fa-cogs fa-spin"></i>
|
||||
Settings</a></li>
|
||||
<li><a href="#tab2_3" data-toggle="tab"><i class="fa fa-download"></i> Downloaders</a>
|
||||
</li>
|
||||
@@ -31,7 +31,7 @@
|
||||
<tbody>
|
||||
<tr valign="top">
|
||||
<td>
|
||||
<table class="table table-condensed table-striped responsive">
|
||||
<table class="data table table-condensed table-striped table-responsive table-hover">
|
||||
<tbody>
|
||||
<tr class="bg-primary">
|
||||
<td colspan="2" style="padding-left: 8px;">
|
||||
@@ -70,7 +70,7 @@
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table class="table table-condensed table-striped responsive">
|
||||
<table class="data table table-condensed table-striped table-responsive table-hover">
|
||||
<tbody>
|
||||
<tr class="bg-primary">
|
||||
<td colspan="2" style="padding-left: 8px;"><strong>Excluded
|
||||
@@ -84,7 +84,7 @@
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table class="table table-condensed table-striped responsive">
|
||||
<table class="data table table-condensed table-striped table-responsive table-hover">
|
||||
<tbody>
|
||||
<tr class="bg-primary">
|
||||
<td colspan="2" style="padding-left: 8px;"><strong>UI
|
||||
@@ -156,7 +156,7 @@
|
||||
function.
|
||||
<br/>
|
||||
{if $page->settings->getSetting('sabintegrationtype') != 1}
|
||||
<table class="table table-condensed table-striped responsive">
|
||||
<table class="data table table-condensed table-striped table-responsive table-hover">
|
||||
<tbody>
|
||||
<tr class="bg-primary">
|
||||
<td colspan="2" style="padding-left: 8px;"><strong>Queue
|
||||
@@ -175,7 +175,7 @@
|
||||
</table>
|
||||
{/if}
|
||||
{if $user.queuetype == 1 && $page->settings->getSetting('sabintegrationtype') == 2}
|
||||
<table class="table table-condensed table-striped responsive">
|
||||
<table class="data table table-condensed table-striped table-responsive table-hover">
|
||||
<tbody>
|
||||
<tr class="bg-primary">
|
||||
<td colspan="2" style="padding-left: 8px;"><strong>SABnzbd</strong>
|
||||
@@ -234,7 +234,7 @@
|
||||
</table>
|
||||
{/if}
|
||||
{if $user.queuetype == 2 && ($page->settings->getSetting('sabintegrationtype') == 0 || $page->settings->getSetting('sabintegrationtype') == 2)}
|
||||
<table class="table table-condensed table-striped responsive">
|
||||
<table class="data table table-condensed table-striped table-responsive table-hover">
|
||||
<tbody>
|
||||
<tr class="bg-primary">
|
||||
<td colspan="2" style="padding-left: 8px;"><strong>NZBget</strong>
|
||||
@@ -269,7 +269,7 @@
|
||||
</tbody>
|
||||
</table>
|
||||
{/if}
|
||||
<table class="table table-condensed table-striped responsive">
|
||||
<table class="data table table-condensed table-striped table-responsive table-hover">
|
||||
<tbody>
|
||||
<tr class="bg-primary">
|
||||
<td colspan="2" style="padding-left: 8px;"><strong>NZB
|
||||
@@ -300,9 +300,34 @@
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Hidden CP and Style fields because it's crap and doesn't work (YET) -->
|
||||
<input id="cp_api" class="long" name="cp_api" type="hidden" value="{$cp_api_selected}"/>
|
||||
<input id="cp_url" class="long" name="cp_url" type="hidden" value="{$cp_url_selected}"/>
|
||||
<table class="data table table-condensed table-striped table-responsive table-hover">
|
||||
<tbody>
|
||||
<tr class="bg-primary">
|
||||
<td colspan="2" style="padding-left: 8px;"><strong>Couchpotato</strong>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
||||
<th width="200">API / URL</th>
|
||||
<td>
|
||||
<div class="form-inline">
|
||||
<input id="cp_api"
|
||||
placeholder="Couchpotato API key"
|
||||
class="form-control"
|
||||
name="cp_api" type="text"
|
||||
value="{$cp_api_selected}"/>
|
||||
/
|
||||
<input id="cp_url"
|
||||
placeholder="Couchpotato URL"
|
||||
class="form-control"
|
||||
name="cp_url" type="text"
|
||||
value="{$cp_url_selected}"/>
|
||||
</div>
|
||||
</td>
|
||||
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
{if $page->settings->getSetting('userselstyle') == 1}
|
||||
{html_options id="style" name='style' values=$themelist output=$themelist selected=$user.style}
|
||||
{/if}
|
||||
|
||||
@@ -24,20 +24,20 @@
|
||||
</div>
|
||||
<br>
|
||||
<div class="well well-sm">
|
||||
<form method="get" action="{$smarty.const.WWW_TOP}/search">
|
||||
<div id="sbasic" class="row" style="text-align:center;{if $sadvanced} display:none;{/if}">
|
||||
<div class="col-md-6">
|
||||
<input id="search" class="form-control" maxlength="50" name="search" value="{$search|escape:'html'}"
|
||||
type="search" placeholder="What are you looking for?"/>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<input type="hidden" name="t" value="{if $category[0]!=""}{$category[0]}{else}-1{/if}" id="search_cat"/>
|
||||
<input type="hidden" name="search_type" value="basic" id="search_type"/>
|
||||
<input id="search_search_button" class="btn btn-primary" type="submit" value="Search"/>
|
||||
</div>
|
||||
<form method="get" action="{$smarty.const.WWW_TOP}/search">
|
||||
<div id="sbasic" class="row" style="text-align:center;{if $sadvanced} display:none;{/if}">
|
||||
<div class="col-md-6">
|
||||
<input id="search" class="form-control" maxlength="50" name="search" value="{$search|escape:'html'}"
|
||||
type="search" placeholder="What are you looking for?"/>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<input type="hidden" name="t" value="{if $category[0]!=""}{$category[0]}{else}-1{/if}" id="search_cat"/>
|
||||
<input type="hidden" name="search_type" value="basic" id="search_type"/>
|
||||
<input id="search_search_button" class="btn btn-primary" type="submit" value="Search"/>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<form method="get" action="{$smarty.const.WWW_TOP}/search">
|
||||
<div id="sadvanced" {if not $sadvanced}style="display:none"{/if}>
|
||||
<center>
|
||||
@@ -168,60 +168,60 @@
|
||||
{$pager}
|
||||
</div>
|
||||
</div>
|
||||
<table class="data table table-condensed table-striped responsive" id="browsetable">
|
||||
<table class="data table table-condensed table-striped table-responsive table-hover" id="browsetable">
|
||||
<tr>
|
||||
<th></th>
|
||||
<th>
|
||||
name<br>
|
||||
<a title="Sort Descending" href="{$orderbyname_desc}">
|
||||
<img src="{$smarty.const.WWW_TOP}/templates/charisma/images/sorting/arrow_down.gif" alt="Sort Descending">
|
||||
<img src="{$smarty.const.WWW_TOP}/templates/omicron/images/sorting/arrow_down.gif" alt="Sort Descending">
|
||||
</a>
|
||||
<a title="Sort Ascending" href="{$orderbyname_asc}">
|
||||
<img src="{$smarty.const.WWW_TOP}/templates/charisma/images/sorting/arrow_up.gif" alt="Sort Ascending">
|
||||
<img src="{$smarty.const.WWW_TOP}/templates/omicron/images/sorting/arrow_up.gif" alt="Sort Ascending">
|
||||
</a>
|
||||
</th>
|
||||
<th style="text-align:center;">
|
||||
category<br>
|
||||
<a title="Sort Descending" href="{$orderbycat_desc}">
|
||||
<img src="{$smarty.const.WWW_TOP}/templates/charisma/images/sorting/arrow_down.gif" alt="Sort Descending">
|
||||
<img src="{$smarty.const.WWW_TOP}/templates/omicron/images/sorting/arrow_down.gif" alt="Sort Descending">
|
||||
</a>
|
||||
<a title="Sort Ascending" href="{$orderbycat_asc}">
|
||||
<img src="{$smarty.const.WWW_TOP}/templates/charisma/images/sorting/arrow_up.gif" alt="Sort Ascending">
|
||||
<img src="{$smarty.const.WWW_TOP}/templates/omicron/images/sorting/arrow_up.gif" alt="Sort Ascending">
|
||||
</a>
|
||||
</th>
|
||||
<th style="text-align:center;">
|
||||
posted<br>
|
||||
<a title="Sort Descending" href="{$orderbyposted_desc}">
|
||||
<img src="{$smarty.const.WWW_TOP}/templates/charisma/images/sorting/arrow_down.gif" alt="Sort Descending">
|
||||
<img src="{$smarty.const.WWW_TOP}/templates/omicron/images/sorting/arrow_down.gif" alt="Sort Descending">
|
||||
</a>
|
||||
<a title="Sort Ascending" href="{$orderbyposted_asc}">
|
||||
<img src="{$smarty.const.WWW_TOP}/templates/charisma/images/sorting/arrow_up.gif" alt="Sort Ascending">
|
||||
<img src="{$smarty.const.WWW_TOP}/templates/omicron/images/sorting/arrow_up.gif" alt="Sort Ascending">
|
||||
</a>
|
||||
</th>
|
||||
<th style="text-align:center;">
|
||||
size<br>
|
||||
<a title="Sort Descending" href="{$orderbysize_desc}">
|
||||
<img src="{$smarty.const.WWW_TOP}/templates/charisma/images/sorting/arrow_down.gif" alt="Sort Descending">
|
||||
<img src="{$smarty.const.WWW_TOP}/templates/omicron/images/sorting/arrow_down.gif" alt="Sort Descending">
|
||||
</a>
|
||||
<a title="Sort Ascending" href="{$orderbysize_asc}">
|
||||
<img src="{$smarty.const.WWW_TOP}/templates/charisma/images/sorting/arrow_up.gif" alt="Sort Ascending">
|
||||
<img src="{$smarty.const.WWW_TOP}/templates/omicron/images/sorting/arrow_up.gif" alt="Sort Ascending">
|
||||
</a>
|
||||
</th>
|
||||
<th style="text-align:center;">
|
||||
files<br>
|
||||
<a title="Sort Descending" href="{$orderbyfiles_desc}">
|
||||
<img src="{$smarty.const.WWW_TOP}/templates/charisma/images/sorting/arrow_down.gif" alt="Sort Descending">
|
||||
<img src="{$smarty.const.WWW_TOP}/templates/omicron/images/sorting/arrow_down.gif" alt="Sort Descending">
|
||||
</a>
|
||||
<a title="Sort Ascending" href="{$orderbyfiles_asc}">
|
||||
<img src="{$smarty.const.WWW_TOP}/templates/charisma/images/sorting/arrow_up.gif" alt="Sort Ascending">
|
||||
<img src="{$smarty.const.WWW_TOP}/templates/omicron/images/sorting/arrow_up.gif" alt="Sort Ascending">
|
||||
</a>
|
||||
</th>
|
||||
<th style="text-align:center;">stats<br>
|
||||
<a title="Sort Descending" href="{$orderbystats_desc}">
|
||||
<img src="{$smarty.const.WWW_TOP}/templates/charisma/images/sorting/arrow_down.gif" alt="Sort Descending">
|
||||
<img src="{$smarty.const.WWW_TOP}/templates/omicron/images/sorting/arrow_down.gif" alt="Sort Descending">
|
||||
</a>
|
||||
<a title="Sort Ascending" href="{$orderbystats_asc}">
|
||||
<img src="{$smarty.const.WWW_TOP}/templates/charisma/images/sorting/arrow_up.gif" alt="Sort Ascending">
|
||||
<img src="{$smarty.const.WWW_TOP}/templates/omicron/images/sorting/arrow_up.gif" alt="Sort Ascending">
|
||||
</a>
|
||||
</th>
|
||||
<th>
|
||||
@@ -251,11 +251,11 @@
|
||||
<div class="btns" style="float:right">
|
||||
{release_flag($result.searchname, browse)}
|
||||
{if $result.passwordstatus == 1}
|
||||
<img title="RAR/ZIP Possibly Passworded." src="{$smarty.const.WWW_TOP}/templates/charisma/images/icons/lock2.png" alt="RAR/ZIP Possibly Passworded.">
|
||||
<img title="RAR/ZIP Possibly Passworded." src="{$smarty.const.WWW_TOP}/templates/omicron/images/icons/lock2.png" alt="RAR/ZIP Possibly Passworded.">
|
||||
{elseif $result.passwordstatus == 2}
|
||||
<img title="RAR/ZIP Possibly Damaged." src="{$smarty.const.WWW_TOP}/templates/charisma/images/icons/broken.png" alt="RAR/ZIP Possibly Damaged.">
|
||||
<img title="RAR/ZIP Possibly Damaged." src="{$smarty.const.WWW_TOP}/templates/omicron/images/icons/broken.png" alt="RAR/ZIP Possibly Damaged.">
|
||||
{elseif $result.passwordstatus == 10}
|
||||
<img title="RAR/ZIP is Passworded." src="{$smarty.const.WWW_TOP}/templates/charisma/images/icons/lock.gif" alt="RAR/ZIP is Passworded.">
|
||||
<img title="RAR/ZIP is Passworded." src="{$smarty.const.WWW_TOP}/templates/omicron/images/icons/lock.gif" alt="RAR/ZIP is Passworded.">
|
||||
{/if}
|
||||
{if $result.videostatus > 0}
|
||||
<a
|
||||
@@ -318,7 +318,7 @@
|
||||
<a title="View file list" href="{$smarty.const.WWW_TOP}/filelist/{$result.guid}">{$result.totalpart}</a>
|
||||
{if $result.rarinnerfilecount > 0}
|
||||
<div class="rarfilelist">
|
||||
<img src="{$smarty.const.WWW_TOP}/templates/charisma/images/icons/magnifier.png" alt="{$result.guid}">
|
||||
<img src="{$smarty.const.WWW_TOP}/templates/omicron/images/icons/magnifier.png" alt="{$result.guid}">
|
||||
</div>
|
||||
{/if}
|
||||
</td>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
{$site->adbrowse}
|
||||
|
||||
{if isset($data) && $data|@count > 0}
|
||||
<table class="data highlight icons table table-striped" id="coverstable">
|
||||
<table class="data highlight icons table table-condensed table-striped table-responsive table-hover" id="coverstable">
|
||||
{foreach $data as $result}
|
||||
<tr class="{cycle values=",alt"}">
|
||||
<td class="mid">
|
||||
@@ -65,7 +65,7 @@
|
||||
<br/>
|
||||
{/if}
|
||||
|
||||
{if isset ($ourmovies) && $ourmovies[$result->alternate_ids->imdb] != ""}
|
||||
{if isset($ourmovies) && $ourmovies[$result->alternate_ids->imdb] != ""}
|
||||
<a class="rndbtn btn btn-sm btn-success"
|
||||
href="{$smarty.const.WWW_TOP}/movies?imdb={$result->alternate_ids->imdb}">Download</a>
|
||||
{else}
|
||||
|
||||
@@ -90,7 +90,7 @@
|
||||
<div class="panel">
|
||||
<div class="panel-content pagination2">
|
||||
|
||||
<table style="width:100%;" class="data table table-condensed table-striped table-layout"
|
||||
<table style="width:100%;" class="data table table-condensed table-striped table-responsive table-hover"
|
||||
id="browsetable">
|
||||
{foreach $animeEpisodeTitles as $animeEpno => $animeEpisodeTitle}
|
||||
<tr>
|
||||
@@ -147,19 +147,19 @@
|
||||
{if isset($sabintegrated)}
|
||||
<a class="icon icon_sab" href="#" title="Send to Sab">
|
||||
<img class="icon icon_sab" alt="Send to my Sabnzbd"
|
||||
src="{$smarty.const.WWW_TOP}/templates/charisma/images/icons/sabup.png">
|
||||
src="{$smarty.const.WWW_TOP}/templates/omicron/images/icons/sabup.png">
|
||||
</a>
|
||||
{/if}
|
||||
{if $weHasVortex}
|
||||
<a class="icon icon_nzbvortex" href="#" title="Send to NZBVortex">
|
||||
<img class="icon icon_nzbvortex" alt="Send to my NZBVortex"
|
||||
src="{$smarty.const.WWW_TOP}/templates/charisma/images/icons/vortex/bigsmile.png">
|
||||
src="{$smarty.const.WWW_TOP}/templates/omicron/images/icons/vortex/bigsmile.png">
|
||||
</a>
|
||||
{/if}
|
||||
{if isset($nzbgetintegrated)}<a class="icon icon_nzbget" title="Send to NZBGet"
|
||||
href="#"><img class="icon icon_nzbget"
|
||||
alt="Send to NZBget"
|
||||
src="{$smarty.const.WWW_TOP}/templates/charisma/images/icons/nzbgetup.png">
|
||||
src="{$smarty.const.WWW_TOP}/templates/omicron/images/icons/nzbgetup.png">
|
||||
</a>{/if}
|
||||
{if isset($isadmin)}
|
||||
<br/>
|
||||
@@ -175,8 +175,4 @@
|
||||
{/foreach}
|
||||
{/foreach}
|
||||
</table>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
@@ -23,7 +23,7 @@
|
||||
{$site->adbrowse}
|
||||
|
||||
{if $animelist|@count > 0}
|
||||
<table style="width:100%;" class="data highlight icons table table-striped" id="browsetable">
|
||||
<table style="width:100%;" class="data table table-condensed table-striped table-responsive table-hover" id="browsetable">
|
||||
{foreach $animelist as $aletter => $anime}
|
||||
<tr>
|
||||
<td colspan="10">
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<a href="{$smarty.const.WWW_TOP}/details/{$rel.guid}/{$rel.searchname|escape:"htmlall"}">{$rel.searchname|escape:'htmlall'}</a>
|
||||
</h2>
|
||||
|
||||
<table style="width:100%;margin-bottom:10px;" class="data Sortable highlight">
|
||||
<table class="data table table-striped table-responsive sortable table-condensed table-hover">
|
||||
|
||||
<tr>
|
||||
<th>#</th>
|
||||
@@ -19,7 +19,7 @@
|
||||
<td width="20">{$smarty.foreach.iteration.index+1}</td>
|
||||
<td>{$file.title|escape:'htmlall'}</td>
|
||||
|
||||
{assign var="icon" value='templates/charisma/images/fileicons/'|cat:$file.ext|cat:".png"}
|
||||
{assign var="icon" value='templates/omicron/images/fileicons/'|cat:$file.ext|cat:".png"}
|
||||
{if $file.ext == "" || !is_file("$icon")}
|
||||
{assign var="icon" value='file'}
|
||||
{else}
|
||||
@@ -33,7 +33,7 @@
|
||||
{/if}
|
||||
|
||||
<td><img title=".{$file.ext}" alt="{$file.ext}"
|
||||
src="{$smarty.const.WWW_TOP}/templates/charisma/images/fileicons/{$icon}.png"/></td>
|
||||
src="{$smarty.const.WWW_TOP}/templates/omicron/images/fileicons/{$icon}.png"/></td>
|
||||
<td class="less right">{if $completion < 100}<span class="warning">{$completion}
|
||||
%</span>{else}{$completion}%{/if}</td>
|
||||
<td class="less right">{if $file.size < 100000}{$file.size|fsize_format:"KB"}{else}{$file.size|fsize_format:"MB"}{/if}</td>
|
||||
|
||||
@@ -11,216 +11,235 @@
|
||||
</div>
|
||||
|
||||
{if $results|@count > 0}
|
||||
{foreach from=$results item=result}
|
||||
<div id="moviefull" style="min-height:340px;">
|
||||
{if $result.cover == 1}
|
||||
<img class="pull-right" style="margin-right:50px; max-height:278px;"
|
||||
alt="{$result.title|escape:"htmlall"} Logo"
|
||||
src="{$smarty.const.WWW_TOP}/covers/movies/{$result.imdbid}-cover.jpg"/>
|
||||
{else}
|
||||
<img class="pull-right" style="margin-right:50px; max-height:278px;"
|
||||
alt="{$result.title|escape:"htmlall"} Logo"
|
||||
src="{$serverroot}templates/charisma/images/nomoviecover.jpg"/>
|
||||
{/if}
|
||||
<span class="h1" style="display:inline;">{$result.title|escape:"htmlall"} ({$result.year})</span><a
|
||||
class="btn btn-transparent btn-primary" target="_blank"
|
||||
href="{$site->dereferrer_link}http://www.imdb.com/title/tt{$result.imdbid}/"
|
||||
name="imdb{$result.imdbid}" title="View IMDB page for this movie">View on IMDB</a>
|
||||
<h4>{if $result.genre != ''}{$result.genre|replace:"|":" / "}{/if}</h4>
|
||||
{if $result.tagline != ''}
|
||||
<p class="lead" style="margin-right:300px;">"{$result.tagline|escape:"htmlall"}"</p>
|
||||
{/if}
|
||||
<dl style="margin-right:300px;">
|
||||
{if $result.plot != ''}
|
||||
<dt>Plot</dt>
|
||||
<dd>{$result.plot|escape:"htmlall"}</dd>
|
||||
<div class="box-body">
|
||||
{foreach from=$results item=result}
|
||||
<div id="moviefull" style="min-height:340px;">
|
||||
{if $result.cover == 1}
|
||||
<img class="pull-right" style="margin-right:50px; max-height:278px;"
|
||||
alt="{$result.title|escape:"htmlall"} Logo"
|
||||
src="{$smarty.const.WWW_TOP}/covers/movies/{$result.imdbid}-cover.jpg"/>
|
||||
{else}
|
||||
<img class="pull-right" style="margin-right:50px; max-height:278px;"
|
||||
alt="{$result.title|escape:"htmlall"} Logo"
|
||||
src="{$serverroot}templates/omicron/images/nomoviecover.jpg"/>
|
||||
{/if}
|
||||
{if $result.rating != ''}
|
||||
<dt>Rating</dt>
|
||||
<dd>{$result.rating}
|
||||
/10 {if $result.ratingcount != ''}({$result.ratingcount|number_format} votes)</dd>{/if}
|
||||
<span class="h1" style="display:inline;">{$result.title|escape:"htmlall"} ({$result.year})</span><a
|
||||
class="btn btn-transparent btn-primary" target="_blank"
|
||||
href="{$site->dereferrer_link}http://www.imdb.com/title/tt{$result.imdbid}/"
|
||||
name="imdb{$result.imdbid}" title="View IMDB page for this movie">View on IMDB</a>
|
||||
<h4>{if $result.genre != ''}{$result.genre|replace:"|":" / "}{/if}</h4>
|
||||
{if $result.tagline != ''}
|
||||
<p class="lead" style="margin-right:300px;">"{$result.tagline|escape:"htmlall"}"</p>
|
||||
{/if}
|
||||
{if $result.director != ''}
|
||||
<dt>Director</dt>
|
||||
<dd>{$result.director|replace:"|":", "}</dd>
|
||||
{/if}
|
||||
{if $result.actors != ''}
|
||||
<dt>Actors</dt>
|
||||
<dd>{$result.actors|replace:"|":", "}</dd>
|
||||
{/if}
|
||||
</dl>
|
||||
</div>
|
||||
<form id="nzb_multi_operations_form" action="get">
|
||||
<div class="well well-small">
|
||||
<div class="nzb_multi_operations">
|
||||
{if $section != ''}View:
|
||||
<a href="{$smarty.const.WWW_TOP}/{$section}?t={$category}">Covers</a>
|
||||
|
|
||||
<b>List</b>
|
||||
<br/>
|
||||
{/if}
|
||||
With Selected:
|
||||
<div class="btn-group">
|
||||
<input type="button" class="nntmux_multi_operations_download btn btn-sm btn-success"
|
||||
value="Download NZBs"/>
|
||||
<input type="button" class="nntmux_multi_operations_cart btn btn-sm btn-info" value="Add to Cart"/>
|
||||
{if isset($sabintegrated)}
|
||||
<input type="button" class="nzb_multi_operations_sab btn btn-sm btn-primary"
|
||||
value="Send to Queue"/>
|
||||
<dl style="margin-right:300px;">
|
||||
{if $result.plot != ''}
|
||||
<dt>Plot</dt>
|
||||
<dd>{$result.plot|escape:"htmlall"}</dd>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
{if isset($isadmin)}
|
||||
<div class="pull-right">
|
||||
Admin:
|
||||
<div class="btn-group">
|
||||
<input type="button" class="nntmux_multi_operations_edit btn btn-sm btn-warning"
|
||||
value="Edit"/>
|
||||
<input type="button" class="nntmux_multi_operations_delete btn btn-sm btn-danger"
|
||||
value="Delete"/>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
{if $result.rating != ''}
|
||||
<dt>Rating</dt>
|
||||
<dd>{$result.rating}
|
||||
/10 {if $result.ratingcount != ''}({$result.ratingcount|number_format} votes)</dd>{/if}
|
||||
{/if}
|
||||
{if $result.director != ''}
|
||||
<dt>Director</dt>
|
||||
<dd>{$result.director|replace:"|":", "}</dd>
|
||||
{/if}
|
||||
{if $result.actors != ''}
|
||||
<dt>Actors</dt>
|
||||
<dd>{$result.actors|replace:"|":", "}</dd>
|
||||
{/if}
|
||||
</dl>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-xlg-12 portlets">
|
||||
<div class="panel">
|
||||
<div class="panel-content pagination2">
|
||||
<table style="width:100%;" class="table table-condensed table-striped">
|
||||
<tr>
|
||||
<th>
|
||||
<input id="chkSelectAll" type="checkbox" class="nntmux_check_all"/>
|
||||
<label for="chkSelectAll" style="display:none;">Select All</label>
|
||||
</th>
|
||||
<form id="nzb_multi_operations_form" action="get">
|
||||
<div class="well well-small">
|
||||
<div class="nzb_multi_operations">
|
||||
{if $section != ''}View:
|
||||
<a href="{$smarty.const.WWW_TOP}/{$section}?t={$category}">Covers</a>
|
||||
|
|
||||
<b>List</b>
|
||||
<br/>
|
||||
{/if}
|
||||
With Selected:
|
||||
<div class="btn-group">
|
||||
<input type="button" class="nntmux_multi_operations_download btn btn-sm btn-success"
|
||||
value="Download NZBs"/>
|
||||
<input type="button" class="nntmux_multi_operations_cart btn btn-sm btn-info"
|
||||
value="Add to Cart"/>
|
||||
{if isset($sabintegrated)}
|
||||
<input type="button" class="nzb_multi_operations_sab btn btn-sm btn-primary"
|
||||
value="Send to Queue"/>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<th>Name<br/>
|
||||
<a title="Sort Descending" href="{$orderbyname_desc}">
|
||||
<i class="fa fa-icon-caret-down"></i>
|
||||
</a>
|
||||
<a title="Sort Ascending" href="{$orderbyname_asc}">
|
||||
<i class="fa fa-icon-caret-up"></i>
|
||||
</a>
|
||||
</th>
|
||||
{if isset($isadmin)}
|
||||
<div class="pull-right">
|
||||
Admin:
|
||||
<div class="btn-group">
|
||||
<input type="button" class="nntmux_multi_operations_edit btn btn-sm btn-warning"
|
||||
value="Edit"/>
|
||||
<input type="button" class="nntmux_multi_operations_delete btn btn-sm btn-danger"
|
||||
value="Delete"/>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-xlg-12 portlets">
|
||||
<div class="panel">
|
||||
<div class="panel-content pagination2">
|
||||
<table style="width:100%;"
|
||||
class="data table table-condensed table-striped table-responsive table-hover">
|
||||
<tr>
|
||||
<th>
|
||||
<input id="chkSelectAll" type="checkbox" class="nntmux_check_all"/>
|
||||
<label for="chkSelectAll" style="display:none;">Select All</label>
|
||||
</th>
|
||||
|
||||
<th>Category<br/>
|
||||
<a title="Sort Descending" href="{$orderbycat_desc}">
|
||||
<i class="fa fa-icon-caret-down"></i>
|
||||
</a>
|
||||
<a title="Sort Ascending" href="{$orderbycat_asc}">
|
||||
<i class="fa fa-icon-caret-up"></i>
|
||||
</a>
|
||||
</th>
|
||||
<th>Name<br/>
|
||||
<a title="Sort Descending" href="{$orderbyname_desc}">
|
||||
<i class="fa fa-icon-caret-down"></i>
|
||||
</a>
|
||||
<a title="Sort Ascending" href="{$orderbyname_asc}">
|
||||
<i class="fa fa-icon-caret-up"></i>
|
||||
</a>
|
||||
</th>
|
||||
|
||||
<th>Posted<br/>
|
||||
<a title="Sort Descending" href="{$orderbyposted_desc}">
|
||||
<i class="fa fa-icon-caret-down"></i>
|
||||
</a>
|
||||
<a title="Sort Ascending" href="{$orderbyposted_asc}">
|
||||
<i class="fa fa-icon-caret-up"></i>
|
||||
</a>
|
||||
</th>
|
||||
<th>Category<br/>
|
||||
<a title="Sort Descending" href="{$orderbycat_desc}">
|
||||
<i class="fa fa-icon-caret-down"></i>
|
||||
</a>
|
||||
<a title="Sort Ascending" href="{$orderbycat_asc}">
|
||||
<i class="fa fa-icon-caret-up"></i>
|
||||
</a>
|
||||
</th>
|
||||
|
||||
<th>Size<br/>
|
||||
<a title="Sort Descending" href="{$orderbysize_desc}">
|
||||
<i class="fa fa-icon-caret-down"></i>
|
||||
</a>
|
||||
<a title="Sort Ascending" href="{$orderbysize_asc}">
|
||||
<i class="fa fa-icon-caret-up"></i>
|
||||
</a>
|
||||
</th>
|
||||
<th>Action</th>
|
||||
</tr>
|
||||
<th>Posted<br/>
|
||||
<a title="Sort Descending" href="{$orderbyposted_desc}">
|
||||
<i class="fa fa-icon-caret-down"></i>
|
||||
</a>
|
||||
<a title="Sort Ascending" href="{$orderbyposted_asc}">
|
||||
<i class="fa fa-icon-caret-up"></i>
|
||||
</a>
|
||||
</th>
|
||||
|
||||
{assign var="msplits" value=","|explode:$result.grp_release_id}
|
||||
{assign var="mguid" value=","|explode:$result.grp_release_guid}
|
||||
{assign var="mnfo" value=","|explode:$result.grp_release_nfoid}
|
||||
{assign var="mgrp" value=","|explode:$result.grp_release_grpname}
|
||||
{assign var="mname" value="#"|explode:$result.grp_release_name}
|
||||
{assign var="mpostdate" value=","|explode:$result.grp_release_postdate}
|
||||
{assign var="msize" value=","|explode:$result.grp_release_size}
|
||||
{assign var="mtotalparts" value=","|explode:$result.grp_release_totalparts}
|
||||
{assign var="mcomments" value=","|explode:$result.grp_release_comments}
|
||||
{assign var="mgrabs" value=","|explode:$result.grp_release_grabs}
|
||||
{assign var="mpass" value=","|explode:$result.grp_release_password}
|
||||
{assign var="minnerfiles" value=","|explode:$result.grp_rarinnerfilecount}
|
||||
{assign var="mhaspreview" value=","|explode:$result.grp_haspreview}
|
||||
{assign var="mcat" value=","|explode:$result.grp_release_categoryid}
|
||||
{assign var="mcatname" value=","|explode:$result.grp_release_categoryName}
|
||||
{foreach from=$msplits item=m}
|
||||
<tr class="{cycle values=",alt"}" id="guid{$mguid[$m@index]}">
|
||||
<td class="check"><input id="chk{$mguid[$m@index]|substr:0:7}" type="checkbox" class="nzb_check"
|
||||
value="{$mguid[$m@index]}"/></td>
|
||||
<td class="item">
|
||||
<a title="View details"
|
||||
href="{$smarty.const.WWW_TOP}/details/{$mguid[$m@index]}/{$mname[$m@index]|escape:"htmlall"}">{$mname[$m@index]|escape:"htmlall"|replace:".":" "}</a>
|
||||
<br/>
|
||||
<th>Size<br/>
|
||||
<a title="Sort Descending" href="{$orderbysize_desc}">
|
||||
<i class="fa fa-icon-caret-down"></i>
|
||||
</a>
|
||||
<a title="Sort Ascending" href="{$orderbysize_asc}">
|
||||
<i class="fa fa-icon-caret-up"></i>
|
||||
</a>
|
||||
</th>
|
||||
<th>Action</th>
|
||||
</tr>
|
||||
|
||||
{assign var="msplits" value=","|explode:$result.grp_release_id}
|
||||
{assign var="mguid" value=","|explode:$result.grp_release_guid}
|
||||
{assign var="mnfo" value=","|explode:$result.grp_release_nfoid}
|
||||
{assign var="mgrp" value=","|explode:$result.grp_release_grpname}
|
||||
{assign var="mname" value="#"|explode:$result.grp_release_name}
|
||||
{assign var="mpostdate" value=","|explode:$result.grp_release_postdate}
|
||||
{assign var="msize" value=","|explode:$result.grp_release_size}
|
||||
{assign var="mtotalparts" value=","|explode:$result.grp_release_totalparts}
|
||||
{assign var="mcomments" value=","|explode:$result.grp_release_comments}
|
||||
{assign var="mgrabs" value=","|explode:$result.grp_release_grabs}
|
||||
{assign var="mpass" value=","|explode:$result.grp_release_password}
|
||||
{assign var="minnerfiles" value=","|explode:$result.grp_rarinnerfilecount}
|
||||
{assign var="mhaspreview" value=","|explode:$result.grp_haspreview}
|
||||
{assign var="mcat" value=","|explode:$result.grp_release_categoryid}
|
||||
{assign var="mcatname" value=","|explode:$result.grp_release_categoryName}
|
||||
{foreach from=$msplits item=m}
|
||||
<tr class="{cycle values=",alt"}" id="guid{$mguid[$m@index]}">
|
||||
<td class="check"><input id="chk{$mguid[$m@index]|substr:0:7}"
|
||||
type="checkbox"
|
||||
class="nzb_check"
|
||||
value="{$mguid[$m@index]}"/></td>
|
||||
<td class="item">
|
||||
<a title="View details"
|
||||
href="{$smarty.const.WWW_TOP}/details/{$mguid[$m@index]}/{$mname[$m@index]|escape:"htmlall"}">{$mname[$m@index]|escape:"htmlall"|replace:".":" "}</a>
|
||||
<br/>
|
||||
<span class="label label-default">{$mgrabs[$m@index]}
|
||||
grab{if $mgrabs[$m@index] != 1}s{/if}</span>
|
||||
{if $mnfo[$m@index] > 0}<span class="label label-default"><a
|
||||
href="{$smarty.const.WWW_TOP}/nfo/{$mguid[$m@index]}" class="text-muted">NFO</a>
|
||||
</span>{/if}
|
||||
{if $mpass[$m@index] == 2}
|
||||
<i class="fa fa-icon-lock"></i>
|
||||
{elseif $mpass[$m@index] == 1}
|
||||
<i class="fa fa-icon-lock"></i>
|
||||
{/if}
|
||||
</td>
|
||||
<td class="less"><span class="label label-default">{$mcatname[$m@index]}</span></td>
|
||||
<td class="less mid" title="{$mpostdate[$m@index]}">{$mpostdate[$m@index]|timeago}</td>
|
||||
<td class="less right">{$msize[$m@index]|fsize_format:"MB"}</td>
|
||||
<td class="icons">
|
||||
<a title="Download NZB"
|
||||
href="{$smarty.const.WWW_TOP}/getnzb/{$mguid[$m@index]}/{$mname[$m@index]|escape:"htmlall"}"><i
|
||||
class="icon icon_nzb fa fa-download text-muted"></i></a>
|
||||
<a href="#" class="icon_cart text-muted"><i class="fa fa-shopping-cart" title="Add to Cart"></i></a>
|
||||
{if isset($sabintegrated)}<img class="icon_sab"
|
||||
src="{$smarty.const.WWW_TOP}/templates/baffi/images/icons/sabup.png"/>{/if}
|
||||
</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
{if $mnfo[$m@index] > 0}<span class="label label-default"><a
|
||||
href="{$smarty.const.WWW_TOP}/nfo/{$mguid[$m@index]}"
|
||||
class="text-muted">NFO</a>
|
||||
</span>{/if}
|
||||
{if $mpass[$m@index] == 2}
|
||||
<i class="fa fa-icon-lock"></i>
|
||||
{elseif $mpass[$m@index] == 1}
|
||||
<i class="fa fa-icon-lock"></i>
|
||||
{/if}
|
||||
</td>
|
||||
<td class="less"><span
|
||||
class="label label-default">{$mcatname[$m@index]}</span>
|
||||
</td>
|
||||
<td class="less mid"
|
||||
title="{$mpostdate[$m@index]}">{$mpostdate[$m@index]|timeago}</td>
|
||||
<td class="less right">{$msize[$m@index]|fsize_format:"MB"}</td>
|
||||
<td class="icons">
|
||||
<a title="Download NZB"
|
||||
href="{$smarty.const.WWW_TOP}/getnzb/{$mguid[$m@index]}/{$mname[$m@index]|escape:"htmlall"}"><i
|
||||
class="icon icon_nzb fa fa-download text-muted"></i></a>
|
||||
<a href="#" class="icon_cart text-muted"><i class="fa fa-shopping-cart"
|
||||
title="Add to Cart"></i></a>
|
||||
{if isset($sabintegrated)}<img class="icon_sab"
|
||||
src="{$smarty.const.WWW_TOP}/templates/baffi/images/icons/sabup.png"/>{/if}
|
||||
</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
|
||||
</table>
|
||||
<br/>
|
||||
{$pager}
|
||||
{if $results|@count > 10}
|
||||
<div class="well well-small">
|
||||
<div class="nzb_multi_operations">
|
||||
{if $section != ''}View:
|
||||
<a href="{$smarty.const.WWW_TOP}/{$section}?t={$category}">Covers</a>
|
||||
|
|
||||
<b>List</b>
|
||||
<br/>
|
||||
{/if}
|
||||
With Selected:
|
||||
<div class="btn-group">
|
||||
<input type="button" class="nzb_multi_operations_download btn btn-sm btn-success" value="Download NZBs" />
|
||||
<input type="button" class="nzb_multi_operations_cart btn btn-sm btn-info" value="Add to Cart" />
|
||||
{if isset($sabintegrated)}
|
||||
<input type="button" class="nzb_multi_operations_sab btn btn-sm btn-primary" value="Send to Queue"/>
|
||||
{/if}
|
||||
</div>
|
||||
</table>
|
||||
<hr>
|
||||
|
||||
{if isset($isadmin)}
|
||||
<div class="pull-right">
|
||||
Admin:
|
||||
<div class="btn-group">
|
||||
<input type="button" class="nzb_multi_operations_edit btn btn-sm btn-warning" value="Edit"/>
|
||||
<input type="button" class="nzb_multi_operations_delete btn btn-sm btn-danger" value="Delete"/>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
{/if}
|
||||
{/foreach}
|
||||
|
||||
{/if}
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{if $results|@count > 10}
|
||||
<div class="row">
|
||||
<div class="col-md-8">
|
||||
<div class="nzb_multi_operations">
|
||||
{if isset($section) && $section != ''}View:
|
||||
<a href="{$smarty.const.WWW_TOP}/{$section}?t={$category}">Covers</a>
|
||||
|
|
||||
<b>List</b>
|
||||
<br/>
|
||||
{/if}
|
||||
With Selected:
|
||||
<div class="btn-group">
|
||||
<input type="button"
|
||||
class="nzb_multi_operations_download btn btn-sm btn-success"
|
||||
value="Download NZBs"/>
|
||||
<input type="button"
|
||||
class="nzb_multi_operations_cart btn btn-sm btn-info"
|
||||
value="Add to Cart"/>
|
||||
{if isset($sabintegrated)}
|
||||
<input type="button"
|
||||
class="nzb_multi_operations_sab btn btn-sm btn-primary"
|
||||
value="Send to Queue"/>
|
||||
{/if}
|
||||
{if isset($nzbgetintegrated)}
|
||||
<input type="button"
|
||||
class="nzb_multi_operations_nzbget btn btn-sm btn-primary"
|
||||
value="Send to NZBGet"/>
|
||||
{/if}
|
||||
{if isset($isadmin)}
|
||||
<input type="button"
|
||||
class="nzb_multi_operations_edit btn btn-sm btn-warning"
|
||||
value="Edit"/>
|
||||
<input type="button"
|
||||
class="nzb_multi_operations_delete btn btn-sm btn-danger"
|
||||
value="Delete"/>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
{$pager}
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
{/foreach}
|
||||
</div>
|
||||
{/if}
|
||||
@@ -238,7 +238,7 @@
|
||||
<tbody>
|
||||
<tr valign="top">
|
||||
<td>
|
||||
<table class="table table-condensed table-striped responsive">
|
||||
<table class="data table table-condensed table-striped table-responsive table-hover">
|
||||
<tbody>
|
||||
{if $movie && $release.rageid < 0}
|
||||
<tr>
|
||||
@@ -572,7 +572,7 @@
|
||||
</div>
|
||||
<div id="pane5" class="tab-pane">
|
||||
{if $comments|@count > 0}
|
||||
<table class="table table-striped">
|
||||
<table class="tdata table table-condensed table-striped table-responsive table-hover">
|
||||
<tr>
|
||||
<th width="100">User</th>
|
||||
<th>Comment</th>
|
||||
@@ -625,7 +625,8 @@
|
||||
{/if}
|
||||
{if $reVideo.releaseid|@count > 0 || $reAudio|@count > 0}
|
||||
<div id="pane8" class="tab-pane">
|
||||
<table style="width:100%;" class="table table-striped table-responsive table-hover">
|
||||
<table style="width:100%;"
|
||||
class="data table table-condensed table-striped table-responsive table-hover">
|
||||
<tr>
|
||||
<th width="15%"></th>
|
||||
<th>Property</th>
|
||||
@@ -670,7 +671,8 @@
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>Width x Height</td>
|
||||
<td class="right">{$reVideo.videowidth}x{$reVideo.videoheight}</td>
|
||||
<td class="right">{$reVideo.videowidth}
|
||||
x{$reVideo.videoheight}</td>
|
||||
</tr>
|
||||
{/if}
|
||||
{if $reVideo.videoaspect != ""}
|
||||
@@ -779,7 +781,6 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="modal fade modal-image" id="modal-image" tabindex="-1" role="dialog" aria-hidden="true">
|
||||
<div class="modal-dialog">
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
|
||||
{$pager}
|
||||
|
||||
<table class="table table-striped table-bordered bootstrap-datatable datatable responsive">
|
||||
<table class="data table table-condensed table-striped table-responsive table-hover">
|
||||
<tr>
|
||||
<th width="125" class="mid">Date</th>
|
||||
<th class="left">Directory</th>
|
||||
|
||||
@@ -50,200 +50,210 @@
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<center>
|
||||
<div class="btn-group">
|
||||
{if $rage|@count == 1 && $isadmin}
|
||||
<a class="btn btn-sm btn-default"
|
||||
href="{$smarty.const.WWW_TOP}/admin/rage-edit.php?id={$r.id}&action=update&from={$smarty.server.REQUEST_URI|escape:"url"}">Update
|
||||
From Tv Rage</a>
|
||||
{/if}
|
||||
<a class="btn btn-sm btn-default" target="_blank"
|
||||
href="{$site->dereferrer_link}http://www.tvrage.com/shows/id-{$rage[0].rageid}" title="View in TvRage">View
|
||||
in Tv Rage</a>
|
||||
<div class="btn-group">
|
||||
{if $rage|@count == 1 && $isadmin}
|
||||
<a class="btn btn-sm btn-default"
|
||||
href="{$smarty.const.WWW_TOP}/rss?rage={$rage[0].rageid}{if $category != ''}&t={$category}{/if}&dl=1&i={$userdata.id}&r={$userdata.rsstoken}">RSS
|
||||
for TV Show <i class="fa fa-rss"></i></a>
|
||||
</div>
|
||||
</center>
|
||||
href="{$smarty.const.WWW_TOP}/admin/rage-edit.php?id={$r.id}&action=update&from={$smarty.server.REQUEST_URI|escape:"url"}">Update
|
||||
From Tv Rage</a>
|
||||
{/if}
|
||||
<a class="btn btn-sm btn-default" target="_blank"
|
||||
href="{$site->dereferrer_link}http://www.tvrage.com/shows/id-{$rage[0].rageid}" title="View in TvRage">View
|
||||
in Tv Rage</a>
|
||||
<a class="btn btn-sm btn-default"
|
||||
href="{$smarty.const.WWW_TOP}/rss?rage={$rage[0].rageid}{if $category != ''}&t={$category}{/if}&dl=1&i={$userdata.id}&r={$userdata.rsstoken}">RSS
|
||||
for TV Show <i class="fa fa-rss"></i></a>
|
||||
</div>
|
||||
<br/>
|
||||
<form id="nzb_multi_operations_form" action="get">
|
||||
<div class="box-body"
|
||||
<form id="nzb_multi_operations_form" action="get">
|
||||
|
||||
<div class="well well-small">
|
||||
<div class="nzb_multi_operations">
|
||||
With Selected:
|
||||
<div class="btn-group">
|
||||
<input type="button" class="nzb_multi_operations_download btn btn-sm btn-success"
|
||||
value="Download NZBs"/>
|
||||
<input type="button" class="nzb_multi_operations_cart btn btn-sm btn-info" value="Add to Cart"/>
|
||||
{if isset($sabintegrated)}
|
||||
<input type="button" class="nzb_multi_operations_sab btn btn-sm btn-primary"
|
||||
value="Send to Queue"/>
|
||||
{/if}
|
||||
</div>
|
||||
<div class="well well-small">
|
||||
<div class="nzb_multi_operations">
|
||||
With Selected:
|
||||
<div class="btn-group">
|
||||
<input type="button" class="nzb_multi_operations_download btn btn-sm btn-success"
|
||||
value="Download NZBs"/>
|
||||
<input type="button" class="nzb_multi_operations_cart btn btn-sm btn-info"
|
||||
value="Add to Cart"/>
|
||||
{if isset($sabintegrated)}
|
||||
<input type="button" class="nzb_multi_operations_sab btn btn-sm btn-primary"
|
||||
value="Send to Queue"/>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
{if isset($isadmin)}
|
||||
<div class="pull-right">
|
||||
Admin:
|
||||
<div class="btn-group">
|
||||
<input type="button" class="nzb_multi_operations_edit btn btn-sm btn-warning" value="Edit"/>
|
||||
<input type="button" class="nzb_multi_operations_delete btn btn-sm btn-danger"
|
||||
value="Delete"/>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
<div>
|
||||
<a title="Manage your shows" href="{$smarty.const.WWW_TOP}/myshows">My Shows</a> :
|
||||
<div class="btn-group">
|
||||
{if $myshows.id != ''}
|
||||
<a class="btn btn-sm btn-warning"
|
||||
href="{$smarty.const.WWW_TOP}/myshows/edit/{$rage[0].rageid}?from={$smarty.server.REQUEST_URI|escape:"url"}"
|
||||
class="myshows" rel="edit" name="series{$rage[0].rageid}"
|
||||
title="Edit Categories for this show">Edit</a>
|
||||
<a class="btn btn-sm btn-danger"
|
||||
href="{$smarty.const.WWW_TOP}/myshows/delete/{$rage[0].rageid}?from={$smarty.server.REQUEST_URI|escape:"url"}"
|
||||
class="myshows" rel="remove" name="series{$rage[0].rageid}" title="Remove from My Shows">Remove</a>
|
||||
{else}
|
||||
<a class="btn btn-sm btn-success"
|
||||
href="{$smarty.const.WWW_TOP}/myshows/add/{$rage[0].rageid}?from={$smarty.server.REQUEST_URI|escape:"url"}"
|
||||
class="myshows" rel="add" name="series{$rage[0].rageid}" title="Add to My Shows">Add</a>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<br clear="all"/>
|
||||
|
||||
<a id="latest"></a>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xlg-12 portlets">
|
||||
<div class="panel">
|
||||
<div class="panel-content pagination2">
|
||||
<div class="tabbable">
|
||||
<ul class="nav nav-tabs">
|
||||
{foreach $seasons as $seasonnum => $season name="seas"}
|
||||
<li {if $smarty.foreach.seas.first}class="active"{/if}><a
|
||||
title="View Season {$seasonnum}" href="#{$seasonnum}"
|
||||
data-toggle="tab">{$seasonnum}</a></li>
|
||||
{/foreach}
|
||||
</ul>
|
||||
|
||||
<div class="tab-content">
|
||||
{foreach $seasons as $seasonnum => $season name=tv}
|
||||
<div class="tab-pane{if $smarty.foreach.tv.first} active{/if} fade in"
|
||||
id="{$seasonnum}">
|
||||
<table class="tb_{$seasonnum} data table table-condensed table-striped table-layout"
|
||||
id="browsetable">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Ep</th>
|
||||
<th>Name</th>
|
||||
<th><input id="chkSelectAll{$seasonnum}" type="checkbox"
|
||||
name="{$seasonnum}" class="nzb_check_all_season"/><label
|
||||
for="chkSelectAll{$seasonnum}" style="display:none;">Select
|
||||
All</label></th>
|
||||
<th>Category</th>
|
||||
<th>Posted</th>
|
||||
<th>Size</th>
|
||||
<th>Action</th>
|
||||
</tr>
|
||||
</thead>
|
||||
{foreach $season as $episodes}
|
||||
{foreach $episodes as $result}
|
||||
<tr class="{cycle values=",alt"}" id="guid{$result.guid}">
|
||||
{if $result@total>1 && $result@index == 0}
|
||||
<td rowspan="{$result@total}" width="30">
|
||||
<h4>{$episodes@key}</h4></td>
|
||||
{else if $result@total == 1}
|
||||
<td><h4>{$episodes@key}</h4></td>
|
||||
{/if}
|
||||
<td>
|
||||
<a title="View details"
|
||||
href="{$smarty.const.WWW_TOP}/details/{$result.guid}/{$result.searchname|escape:"htmlall"}">{$result.searchname|escape:"htmlall"|replace:".":" "}</a>
|
||||
|
||||
<div>
|
||||
{if $result.nfoid > 0}<span class="label label-default">
|
||||
<a href="{$smarty.const.WWW_TOP}/nfo/{$result.guid}"
|
||||
class="text-muted">NFO</a></span>{/if}
|
||||
{if $result.haspreview == 1 && $userdata.canpreview == 1}
|
||||
<a
|
||||
href="{$smarty.const.WWW_TOP}/covers/preview/{$result.guid}_thumb.jpg"
|
||||
name="name{$result.guid}" title="View Screenshot"
|
||||
class="modal_prev label badge halffade"
|
||||
rel="preview">Preview</a>{/if}
|
||||
<span class="label label-default">{$result.grabs}
|
||||
Grab{if $result.grabs != 1}s{/if}</span>
|
||||
{if $result.tvairdate != ""}<span
|
||||
class="label label-success"
|
||||
title="{$result.tvtitle} Aired on {$result.tvairdate|date_format}">
|
||||
Aired {if $result.tvairdate|strtotime > $smarty.now}in future{else}{$result.tvairdate|daysago}{/if}</span>{/if}
|
||||
{if $result.reid > 0}<span
|
||||
class="mediainfo label badge halffade"
|
||||
title="{$result.guid}">Media</span>{/if}
|
||||
</div>
|
||||
</td>
|
||||
<td class="check" width="10"><input
|
||||
id="chk{$result.guid|substr:0:7}" type="checkbox"
|
||||
class="nzb_check" name="{$seasonnum}"
|
||||
value="{$result.guid}"/></td>
|
||||
<td>
|
||||
<span class="label label-default">{$result.category_name}</span>
|
||||
</td>
|
||||
<td width="40"
|
||||
title="{$result.postdate}">{$result.postdate|timeago}</td>
|
||||
|
||||
<td>
|
||||
{$result.size|fsize_format:"MB"}
|
||||
</td>
|
||||
<td class="icons" style='width:100px;'>
|
||||
<a title="Download Nzb"
|
||||
href="{$smarty.const.WWW_TOP}/getnzb/{$result.guid}/{$result.searchname|escape:"htmlall"}"><i
|
||||
class="fa fa-download text-muted"></i></a>
|
||||
<a class="fa fa-shopping-cart icon_cart text-muted" href="#"
|
||||
title="Add to Cart">
|
||||
</a>
|
||||
{if isset($sabintegrated)}
|
||||
<a class="icon icon_sab" href="#" title="Send to Sab">
|
||||
<img class="icon icon_sab" alt="Send to my Sabnzbd"
|
||||
src="{$smarty.const.WWW_TOP}/templates/charisma/images/icons/sabup.png">
|
||||
</a>
|
||||
{/if}
|
||||
{if $weHasVortex}
|
||||
<a class="icon icon_nzbvortex" href="#"
|
||||
title="Send to NZBVortex">
|
||||
<img class="icon icon_nzbvortex"
|
||||
alt="Send to my NZBVortex"
|
||||
src="{$smarty.const.WWW_TOP}/templates/charisma/images/icons/vortex/bigsmile.png">
|
||||
</a>
|
||||
{/if}
|
||||
{if isset($nzbgetintegrated)}<a class="icon icon_nzbget"
|
||||
title="Send to NZBGet"
|
||||
href="#"><img
|
||||
class="icon icon_nzbget" alt="Send to NZBget"
|
||||
src="{$smarty.const.WWW_TOP}/templates/charisma/images/icons/nzbgetup.png">
|
||||
</a>{/if}
|
||||
{if isset($isadmin)}
|
||||
<br/>
|
||||
<a class="label label-warning"
|
||||
href="{$smarty.const.WWW_TOP}/admin/release-edit.php?id={$result.id}&from={$smarty.server.REQUEST_URI|escape:"url"}"
|
||||
title="Edit Release">Edit</a>
|
||||
<a class="label label-danger"
|
||||
href="{$smarty.const.WWW_TOP}/admin/release-delete.php?id={$result.id}&from={$smarty.server.REQUEST_URI|escape:"url"}"
|
||||
title="Delete Release">Delete</a>
|
||||
{/if}
|
||||
</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
{/foreach}
|
||||
</table>
|
||||
{if isset($isadmin)}
|
||||
<div class="pull-right">
|
||||
Admin:
|
||||
<div class="btn-group">
|
||||
<input type="button" class="nzb_multi_operations_edit btn btn-sm btn-warning"
|
||||
value="Edit"/>
|
||||
<input type="button" class="nzb_multi_operations_delete btn btn-sm btn-danger"
|
||||
value="Delete"/>
|
||||
</div>
|
||||
{/foreach}
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
<div>
|
||||
<a title="Manage your shows" href="{$smarty.const.WWW_TOP}/myshows">My Shows</a> :
|
||||
<div class="btn-group">
|
||||
{if $myshows.id != ''}
|
||||
<a class="btn btn-sm btn-warning"
|
||||
href="{$smarty.const.WWW_TOP}/myshows/edit/{$rage[0].rageid}?from={$smarty.server.REQUEST_URI|escape:"url"}"
|
||||
class="myshows" rel="edit" name="series{$rage[0].rageid}"
|
||||
title="Edit Categories for this show">Edit</a>
|
||||
<a class="btn btn-sm btn-danger"
|
||||
href="{$smarty.const.WWW_TOP}/myshows/delete/{$rage[0].rageid}?from={$smarty.server.REQUEST_URI|escape:"url"}"
|
||||
class="myshows" rel="remove" name="series{$rage[0].rageid}"
|
||||
title="Remove from My Shows">Remove</a>
|
||||
{else}
|
||||
<a class="btn btn-sm btn-success"
|
||||
href="{$smarty.const.WWW_TOP}/myshows/add/{$rage[0].rageid}?from={$smarty.server.REQUEST_URI|escape:"url"}"
|
||||
class="myshows" rel="add" name="series{$rage[0].rageid}" title="Add to My Shows">Add</a>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<br clear="all"/>
|
||||
|
||||
<a id="latest"></a>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xlg-12 portlets">
|
||||
<div class="panel">
|
||||
<div class="panel-content pagination2">
|
||||
<div class="tabbable">
|
||||
<ul class="nav nav-tabs">
|
||||
{foreach $seasons as $seasonnum => $season name="seas"}
|
||||
<li {if $smarty.foreach.seas.first}class="active"{/if}><a
|
||||
title="View Season {$seasonnum}" href="#{$seasonnum}"
|
||||
data-toggle="tab">{$seasonnum}</a></li>
|
||||
{/foreach}
|
||||
</ul>
|
||||
|
||||
<div class="tab-content">
|
||||
{foreach $seasons as $seasonnum => $season name=tv}
|
||||
<div class="tab-pane{if $smarty.foreach.tv.first} active{/if} fade in"
|
||||
id="{$seasonnum}">
|
||||
<table class="tb_{$seasonnum} data table table-condensed table-bordered table-responsive table-hover"
|
||||
id="browsetable">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Ep</th>
|
||||
<th>Name</th>
|
||||
<th><input id="chkSelectAll{$seasonnum}" type="checkbox"
|
||||
name="{$seasonnum}"
|
||||
class="nzb_check_all_season"/><label
|
||||
for="chkSelectAll{$seasonnum}"
|
||||
style="display:none;">Select
|
||||
All</label></th>
|
||||
<th>Category</th>
|
||||
<th>Posted</th>
|
||||
<th>Size</th>
|
||||
<th>Action</th>
|
||||
</tr>
|
||||
</thead>
|
||||
{foreach $season as $episodes}
|
||||
{foreach $episodes as $result}
|
||||
<tr class="{cycle values=",alt"}"
|
||||
id="guid{$result.guid}">
|
||||
{if $result@total>1 && $result@index == 0}
|
||||
<td rowspan="{$result@total}" width="30">
|
||||
<h4>{$episodes@key}</h4></td>
|
||||
{else if $result@total == 1}
|
||||
<td><h4>{$episodes@key}</h4></td>
|
||||
{/if}
|
||||
<td>
|
||||
<a title="View details"
|
||||
href="{$smarty.const.WWW_TOP}/details/{$result.guid}/{$result.searchname|escape:"htmlall"}">{$result.searchname|escape:"htmlall"|replace:".":" "}</a>
|
||||
|
||||
<div>
|
||||
{if $result.nfoid > 0}<span
|
||||
class="label label-default">
|
||||
<a href="{$smarty.const.WWW_TOP}/nfo/{$result.guid}"
|
||||
class="text-muted">NFO</a>
|
||||
</span>{/if}
|
||||
{if $result.haspreview == 1 && $userdata.canpreview == 1}
|
||||
<a
|
||||
href="{$smarty.const.WWW_TOP}/covers/preview/{$result.guid}_thumb.jpg"
|
||||
name="name{$result.guid}"
|
||||
title="View Screenshot"
|
||||
class="modal_prev label badge halffade"
|
||||
rel="preview">Preview</a>{/if}
|
||||
<span class="label label-default">{$result.grabs}
|
||||
Grab{if $result.grabs != 1}s{/if}</span>
|
||||
{if $result.tvairdate != ""}<span
|
||||
class="label label-success"
|
||||
title="{$result.tvtitle} Aired on {$result.tvairdate|date_format}">
|
||||
Aired {if $result.tvairdate|strtotime > $smarty.now}in future{else}{$result.tvairdate|daysago}{/if}</span>{/if}
|
||||
{if $result.reid > 0}<span
|
||||
class="mediainfo label badge halffade"
|
||||
title="{$result.guid}">Media</span>{/if}
|
||||
</div>
|
||||
</td>
|
||||
<td class="check" width="10"><input
|
||||
id="chk{$result.guid|substr:0:7}"
|
||||
type="checkbox"
|
||||
class="nzb_check" name="{$seasonnum}"
|
||||
value="{$result.guid}"/></td>
|
||||
<td>
|
||||
<span class="label label-default">{$result.category_name}</span>
|
||||
</td>
|
||||
<td width="40"
|
||||
title="{$result.postdate}">{$result.postdate|timeago}</td>
|
||||
|
||||
<td>
|
||||
{$result.size|fsize_format:"MB"}
|
||||
</td>
|
||||
<td class="icons" style='width:100px;'>
|
||||
<a title="Download Nzb"
|
||||
href="{$smarty.const.WWW_TOP}/getnzb/{$result.guid}/{$result.searchname|escape:"htmlall"}"><i
|
||||
class="fa fa-download text-muted"></i></a>
|
||||
<a class="fa fa-shopping-cart icon_cart text-muted"
|
||||
href="#"
|
||||
title="Add to Cart">
|
||||
</a>
|
||||
{if isset($sabintegrated)}
|
||||
<a class="icon icon_sab" href="#"
|
||||
title="Send to Sab">
|
||||
<img class="icon icon_sab"
|
||||
alt="Send to my Sabnzbd"
|
||||
src="{$smarty.const.WWW_TOP}/templates/omicron/images/icons/sabup.png">
|
||||
</a>
|
||||
{/if}
|
||||
{if $weHasVortex}
|
||||
<a class="icon icon_nzbvortex" href="#"
|
||||
title="Send to NZBVortex">
|
||||
<img class="icon icon_nzbvortex"
|
||||
alt="Send to my NZBVortex"
|
||||
src="{$smarty.const.WWW_TOP}/templates/omicron/images/icons/vortex/bigsmile.png">
|
||||
</a>
|
||||
{/if}
|
||||
{if isset($nzbgetintegrated)}<a
|
||||
class="icon icon_nzbget"
|
||||
title="Send to NZBGet"
|
||||
href="#"><img
|
||||
class="icon icon_nzbget"
|
||||
alt="Send to NZBget"
|
||||
src="{$smarty.const.WWW_TOP}/templates/omicron/images/icons/nzbgetup.png">
|
||||
</a>{/if}
|
||||
{if isset($isadmin)}
|
||||
<br/>
|
||||
<a class="label label-warning"
|
||||
href="{$smarty.const.WWW_TOP}/admin/release-edit.php?id={$result.id}&from={$smarty.server.REQUEST_URI|escape:"url"}"
|
||||
title="Edit Release">Edit</a>
|
||||
<a class="label label-danger"
|
||||
href="{$smarty.const.WWW_TOP}/admin/release-delete.php?id={$result.id}&from={$smarty.server.REQUEST_URI|escape:"url"}"
|
||||
title="Delete Release">Delete</a>
|
||||
{/if}
|
||||
</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
{/foreach}
|
||||
</table>
|
||||
</div>
|
||||
{/foreach}
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
{/if}
|
||||
@@ -25,7 +25,7 @@
|
||||
|
||||
{if $serieslist|@count > 0}
|
||||
|
||||
<table class="dataTable data highlight icons table table-striped table-responsive" id="browsetable">
|
||||
<table class="data table table-condensed table-striped table-responsive table-hover icons" id="browsetable">
|
||||
{foreach $serieslist as $sletter => $series}
|
||||
<tr>
|
||||
<td colspan="10">
|
||||
|
||||
@@ -74,7 +74,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<table class="data table table-condensed table-striped" cellspacing="0"
|
||||
<table class="data table table-condensed table-striped table-responsive table-hover" cellspacing="0"
|
||||
cellpadding="0" style="table-layout: auto;">
|
||||
<thead>
|
||||
<tr>
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
<div class="col-lg-12 portlets">
|
||||
<div class="panel">
|
||||
<div class="panel-content pagination2">
|
||||
<table class="table table-condensed table-striped sortable responsive"
|
||||
<table class="data table table-condensed table-striped sortable table-responsive table-hover"
|
||||
style="table-layout: auto;" data-sort-order="desc">
|
||||
<thead>
|
||||
<tr>
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
<div class="col-lg-12 portlets">
|
||||
<div class="panel">
|
||||
<div class="panel-content pagination2">
|
||||
<table style="width:100%;" class="data table table-condensed table-striped" id="browsetable">
|
||||
<table style="width:100%;" class="data table table-condensed table-striped table-responsive table-hover" id="browsetable">
|
||||
<tr>
|
||||
<th width="50"><input id="chkSelectAll" type="checkbox" class="nzb_check_all"/><label
|
||||
for="chkSelectAll" style="display:none;">Select All</label></th>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{if $data|@count > 0}
|
||||
<table class="table table-striped table-condensed" id="coverstable">
|
||||
<table class="data table table-striped table-condensed table-responsive table-hover" id="coverstable">
|
||||
<tr>
|
||||
<th></th>
|
||||
<th>Name</th>
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
</p>
|
||||
|
||||
{if $movies|@count > 0}
|
||||
<table class="table table-condensed table-striped table-sortable responsive" id="browsetable">
|
||||
<table class="table table-condensed table-striped table-sortable table-responsive table-hover" id="browsetable">
|
||||
<tr>
|
||||
|
||||
<th></th>
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<center>
|
||||
<div class="btn-group">
|
||||
<a class="btn btn-sm btn-default" title="View available TV series" href="{$smarty.const.WWW_TOP}/series">View
|
||||
all series</a>
|
||||
@@ -20,53 +19,54 @@
|
||||
href="{$smarty.const.WWW_TOP}/rss?t=-3&dl=1&i={$userdata.id}&r={$userdata.rsstoken}">RSS Feed for
|
||||
My Shows <i class="fa fa-rss"></i></a>
|
||||
</div>
|
||||
</center>
|
||||
<br>
|
||||
<hr>
|
||||
|
||||
{if $shows|@count > 0}
|
||||
<div class="row">
|
||||
<div class="col-lg-12 portlets">
|
||||
<div class="panel">
|
||||
<div class="panel-content pagination2">
|
||||
<table class="table table-striped table-condensed">
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th width="80">Category</th>
|
||||
<th width="110">Added</th>
|
||||
<th width="130" class="mid">Options</th>
|
||||
</tr>
|
||||
<div class="box-body">
|
||||
<div class="row">
|
||||
<div class="col-lg-12 portlets">
|
||||
<div class="panel">
|
||||
<div class="panel-content pagination2">
|
||||
<table class="data table table-striped table-condensed table-responsive table-hover">
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th width="80">Category</th>
|
||||
<th width="110">Added</th>
|
||||
<th width="130" class="mid">Options</th>
|
||||
</tr>
|
||||
|
||||
{foreach from=$shows item=show}
|
||||
<tr>
|
||||
<td>
|
||||
<a title="View details"
|
||||
href="{$smarty.const.WWW_TOP}/series/{$show.rageid}{if $show.categoryid != ''}?t={$show.categoryid|replace:"|":","}{/if}">{$show.releasetitle|escape:"htmlall"|wordwrap:75:"\n":true}</a>
|
||||
</td>
|
||||
<td>
|
||||
<span class="label label-default">{if $show.categoryNames != ''}{$show.categoryNames|escape:"htmlall"}{else}All{/if}</span>
|
||||
</td>
|
||||
<td title="Added on {$show.createddate}">{$show.createddate|date_format}</td>
|
||||
<td>
|
||||
<div class="btn-group">
|
||||
<a class="btn btn-xs btn-warning"
|
||||
href="{$smarty.const.WWW_TOP}/myshows/edit/{$show.rageid}" class="myshows"
|
||||
rel="edit" name="series{$show.rageid}" title="Edit Categories">Edit</a>
|
||||
<a class="btn btn-xs btn-danger confirm_action"
|
||||
href="{$smarty.const.WWW_TOP}/myshows/delete/{$show.rageid}" class="myshows"
|
||||
rel="remove" name="series{$show.rageid}" title="Remove from My Shows">Remove</a>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
{foreach from=$shows item=show}
|
||||
<tr>
|
||||
<td>
|
||||
<a title="View details"
|
||||
href="{$smarty.const.WWW_TOP}/series/{$show.rageid}{if $show.categoryid != ''}?t={$show.categoryid|replace:"|":","}{/if}">{$show.releasetitle|escape:"htmlall"|wordwrap:75:"\n":true}</a>
|
||||
</td>
|
||||
<td>
|
||||
<span class="label label-default">{if $show.categoryNames != ''}{$show.categoryNames|escape:"htmlall"}{else}All{/if}</span>
|
||||
</td>
|
||||
<td title="Added on {$show.createddate}">{$show.createddate|date_format}</td>
|
||||
<td>
|
||||
<div class="btn-group">
|
||||
<a class="btn btn-xs btn-warning myshows"
|
||||
href="{$smarty.const.WWW_TOP}/myshows/edit/{$show.rageid}"
|
||||
rel="edit" name="series{$show.rageid}" title="Edit Categories">Edit</a>
|
||||
<a class="btn btn-xs btn-danger confirm_action myshows"
|
||||
href="{$smarty.const.WWW_TOP}/myshows/delete/{$show.rageid}"
|
||||
rel="remove" name="series{$show.rageid}"
|
||||
title="Remove from My Shows">Remove</a>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
|
||||
</table>
|
||||
|
||||
{else}
|
||||
<div class="alert alert-danger">
|
||||
<strong>Sorry!</strong> No shows bookmarked yet!
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{else}
|
||||
<div class="alert alert-danger">
|
||||
<strong>Sorry!</strong> No shows bookmarked yet!
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
@@ -9,285 +9,338 @@
|
||||
value="{$lastSearch|escape:'html'}">
|
||||
<span class="input-group-btn">
|
||||
<button type="submit" value="Go" class="btn btn-default">
|
||||
<i class="icon-search"></i>
|
||||
<i class="fa fa-search"></i>
|
||||
</button>
|
||||
</span>
|
||||
</div>
|
||||
</form>
|
||||
{$pager}
|
||||
<table class="table table-striped table-bordered bootstrap-datatable datatable responsive">
|
||||
<tr>
|
||||
<th style="text-align:center;width:125px">Date</th>
|
||||
<th style="text-align:center">Title</th>
|
||||
<th style="width:100px;text-align:center;">Category</th>
|
||||
<th style="width:120px;text-align:center;">Source</th>
|
||||
<th style="width:70px;text-align:center;">Reqid</th>
|
||||
<th style="width:70px;text-align:center;">Size</th>
|
||||
<th style="width:70px;text-align:center;">Files</th>
|
||||
<th style="width:25px"></th>
|
||||
<th style="width:25px"></th>
|
||||
</tr>
|
||||
{foreach from=$results item=result}
|
||||
<tr class="{cycle values=",alt"}">
|
||||
<td class="prehash" style="text-align:center;">
|
||||
{$result.predate|date_format:"%Y-%m-%d %H:%M:%S"}
|
||||
</td>
|
||||
<td class="prehash" style="text-align:center;">
|
||||
{if isset($result.guid)}
|
||||
<a style="font-style:italic;text-decoration:underline;color:#{if $result.nuked == 1}009933{elseif $result.nuked > 1}990000{/if};"
|
||||
class="title" title="View details"
|
||||
href="{$smarty.const.WWW_TOP}/details/{$result.guid}/{$result.title|escape:"htmlall"}">
|
||||
<span title="{if $result.nuked == 1}UNNUKED: {$result.nukereason|escape:"htmlall"}{elseif $result.nuked > 1}NUKED: {$result.nukereason|escape:"htmlall"}{else}{$result.title|escape:"htmlall"}{/if}">{$result.title|escape:"htmlall"}</span>
|
||||
</a>
|
||||
{else}
|
||||
<span style="color:#{if $result.nuked == 1}009933{elseif $result.nuked > 1}990000{/if};"
|
||||
title="{if $result.nuked == 1}UNNUKED: {$result.nukereason|escape:"htmlall"}{elseif $result.nuked > 1}NUKED: {$result.nukereason|escape:"htmlall"}{else}{$result.title|escape:"htmlall"}{/if}">{$result.title|escape:"htmlall"}</span>
|
||||
{/if}
|
||||
</td>
|
||||
<td class="prehash" style="text-align:center;">
|
||||
{* Console *}
|
||||
{* Xbox 360 *}
|
||||
{if {$result.category} == 'XBOX360'}
|
||||
<a class="title" title="View category XBOX 360" href="{$smarty.const.WWW_TOP}/browse?t=1050">Console
|
||||
Xbox
|
||||
360</a>
|
||||
{* Movies *}
|
||||
{elseif in_array({$result.category}, array('Movies'))}
|
||||
<a class="title" title="View category Movies"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=2000">Movies</a>
|
||||
{* SD *}
|
||||
{elseif in_array({$result.category}, array('movies-sd', 'Movies: STD', 'XVid'))}
|
||||
<a class="title" title="View category Movies SD" href="{$smarty.const.WWW_TOP}/browse?t=2030">Movies
|
||||
SD</a>
|
||||
{* HD *}
|
||||
{elseif in_array({$result.category}, array('Movies: HD', 'X264'))}
|
||||
<a class="title" title="View category Movies HD" href="{$smarty.const.WWW_TOP}/browse?t=2040">Movies
|
||||
HD</a>
|
||||
{* BluRay *}
|
||||
{elseif in_array({$result.category}, array('BLURAY'))}
|
||||
<a class="title" title="View category BluRay" href="{$smarty.const.WWW_TOP}/browse?t=2060">Movies
|
||||
BluRay</a>
|
||||
{* DVD *}
|
||||
{elseif in_array({$result.category}, array('DVDR', 'Movies: DVD'))}
|
||||
<a class="title" title="View category DVDR" href="{$smarty.const.WWW_TOP}/browse?t=2070">DVD</a>
|
||||
{* Audio *}
|
||||
{elseif in_array({$result.category}, array('music-audio'))}
|
||||
<a class="title" title="View category Music" href="{$smarty.const.WWW_TOP}/music">Audio</a>
|
||||
{* MP3 *}
|
||||
{elseif in_array({$result.category}, array('MP3', 'Music: MP3'))}
|
||||
<a class="title" title="View category MP3" href="{$smarty.const.WWW_TOP}/browse?t=3010">MP3</a>
|
||||
{* Video *}
|
||||
{elseif in_array({$result.category}, array('MVid', 'Music: MVid'))}
|
||||
<a class="title" title="View category Audio Video" href="{$smarty.const.WWW_TOP}/browse?t=3020">Music
|
||||
Videos</a>
|
||||
{* Audiobook *}
|
||||
{elseif in_array({$result.category}, array('audiobook', 'Audiobook'))}
|
||||
<a class="title" title="View category Audiobook" href="{$smarty.const.WWW_TOP}/browse?t=3030">Audiobook</a>
|
||||
{* Lossless *}
|
||||
{elseif in_array({$result.category}, array('FLAC', 'Music: FLAC'))}
|
||||
<a class="title" title="View category Music Lossless" href="{$smarty.const.WWW_TOP}/browse?t=3040">Lossless
|
||||
Music</a>
|
||||
{* PC *}
|
||||
{* 0day *}
|
||||
{elseif in_array({$result.category}, array('0DAY', 'APPS', 'Apps: PC', 'Apps: Linux', 'DOX'))}
|
||||
<a class="title" title="View category PC 0day" href="{$smarty.const.WWW_TOP}/browse?t=4010">PC
|
||||
0DAY</a>
|
||||
{* Mac *}
|
||||
{elseif in_array({$result.category}, array('Apps: MAC', 'Games: MAC'))}
|
||||
<a class="title" title="View category PC Mac" href="{$smarty.const.WWW_TOP}/browse?t=4030">PC
|
||||
Mac</a>
|
||||
{* Phone-Other *}
|
||||
{elseif in_array({$result.category}, array('Apps: Phone', 'PDA'))}
|
||||
<a class="title" title="View category Phone Other" href="{$smarty.const.WWW_TOP}/browse?t=4040">Phone
|
||||
Other</a>
|
||||
{* Games *}
|
||||
{elseif in_array({$result.category}, array('GAMES', 'Games: PC', 'Games: Other'))}
|
||||
<a class="title" title="View category PC Games" href="{$smarty.const.WWW_TOP}/browse?t=4050">PC
|
||||
Games</a>
|
||||
{* TV *}
|
||||
{elseif in_array({$result.category}, array('TV'))}
|
||||
<a class="title" title="View category TV" href="{$smarty.const.WWW_TOP}/browse?t=5000">TV</a>
|
||||
{* SD *}
|
||||
{elseif in_array({$result.category}, array('TV-DVDRIP', 'tv-sd', 'TV: STD', 'TV-XVid'))}
|
||||
<a class="title" title="View category TV SD" href="{$smarty.const.WWW_TOP}/browse?t=5030">SDTV</a>
|
||||
{* HD *}
|
||||
{elseif in_array({$result.category}, array('tv-hd', 'TV: HD', 'TV-x264', 'TV-X264'))}
|
||||
<a class="title" title="View category TV HD" href="{$smarty.const.WWW_TOP}/browse?t=5040">HDTV</a>
|
||||
{* XXX *}
|
||||
{elseif in_array({$result.category}, array('XXX'))}
|
||||
<a class="title" title="View category XXX" href="{$smarty.const.WWW_TOP}/browse?t=6000">XXX</a>
|
||||
{* DVD *}
|
||||
{elseif in_array({$result.category}, array('XXX: DVD'))}
|
||||
<a class="title" title="View category XXX DVD" href="{$smarty.const.WWW_TOP}/browse?t=6010">XXX
|
||||
DVD</a>
|
||||
{* XviD *}
|
||||
{elseif in_array({$result.category}, array('XXX: SD-CLIPS', 'XXX: MOVIES-SD'))}
|
||||
<a class="title" title="View category XXX XviD" href="{$smarty.const.WWW_TOP}/browse?t=6030">XXX
|
||||
SD</a>
|
||||
{* x264 *}
|
||||
{elseif in_array({$result.category}, array('XXX: HD-CLIPS', 'XXX: MOVIES-HD'))}
|
||||
<a class="title" title="View category XXX x264" href="{$smarty.const.WWW_TOP}/browse?t=6040">XXX
|
||||
HD</a>
|
||||
{* Other *}
|
||||
{elseif in_array({$result.category}, array('xxx-videos'))}
|
||||
<a class="title" title="View category XXX Other" href="{$smarty.const.WWW_TOP}/browse?t=6050">XXX
|
||||
Other</a>
|
||||
{* Imageset *}
|
||||
{elseif in_array({$result.category}, array('XXX-IMGSET'))}
|
||||
<a class="title" title="View category XXX Imageset" href="{$smarty.const.WWW_TOP}/browse?t=6060">XXX
|
||||
Imagesets</a>
|
||||
{* Books *}
|
||||
{elseif in_array({$result.category}, array('EBOOK'))}
|
||||
<a class="title" title="View category Books" href="{$smarty.const.WWW_TOP}/browse?t=8000">Ebooks</a>
|
||||
{* Other *}
|
||||
{elseif in_array({$result.category}, array('Other: E-Books'))}
|
||||
<a class="title" title="View category Books Other" href="{$smarty.const.WWW_TOP}/browse?t=8050">Ebooks
|
||||
Other</a>
|
||||
{elseif in_array({$result.category}, array('', 'PRE'))}
|
||||
N/A
|
||||
{else}
|
||||
{$result.category}
|
||||
{/if}
|
||||
</td>
|
||||
<td class="prehash" style="text-align:center;">
|
||||
{if {$result.source} == abgx}
|
||||
<a title="Visit abgx" href="{$site->dereferrer_link}http://www.abgx.net/rss/x360/posted.rss"
|
||||
target="_blank">
|
||||
abgx.net
|
||||
</a>
|
||||
{elseif in_array({$result.source}, array('abErotica', 'abMooVee', 'abTeeVee', 'abForeign'))}
|
||||
<a title="Visit allfilled {$result.source}"
|
||||
href="{$site->dereferrer_link}http://{$result.source}.allfilled.com/search.php?q={$result.title}&Search=Search"
|
||||
target="_blank">
|
||||
{$result.source}
|
||||
</a>
|
||||
{elseif $result.source|strpos:'#a.b.' !== false}
|
||||
<a title="Visit {$result.source} on IRC"
|
||||
href="irc://irc.Prison.NET:6667/{str_replace('#a.b.', 'alt.binaries.', {$result.source})}"
|
||||
target="_blank">
|
||||
{$result.source}
|
||||
</a>
|
||||
{elseif {$result.source} == omgwtfnzbs}
|
||||
<a title="Visit omgwtfnzbs" href="{$site->dereferrer_link}http://rss.omgwtfnzbs.org/rss-info.php"
|
||||
target="_blank">
|
||||
omgwtfnzbs
|
||||
</a>
|
||||
{elseif {$result.source} == orlydb}
|
||||
<a title="Visit ORLYDB" href="{$site->dereferrer_link}http://orlydb.com/?q={$result.title}"
|
||||
target="_blank"
|
||||
target="_blank">
|
||||
ORLYDB
|
||||
</a>
|
||||
{elseif {$result.source} == predbme}
|
||||
<a title="Visit PreDB.me" href="{$site->dereferrer_link}http://predb.me/?search={$result.title}"
|
||||
target="_blank">
|
||||
PreDB
|
||||
</a>
|
||||
{elseif {$result.source} == prelist}
|
||||
<a title="Visit Prelist"
|
||||
href="{$site->dereferrer_link}http://www.prelist.ws/?search={$result.title}"
|
||||
target="_blank">
|
||||
Prelist
|
||||
</a>
|
||||
{elseif {$result.source} == "#Pre@zenet"}
|
||||
<a title="Visit zenet on IRC" href="irc://irc.zenet.org:6667/Pre" target="_blank">
|
||||
Zenet IRC
|
||||
</a>
|
||||
{elseif {$result.source} == "#pre@corrupt"}
|
||||
<a title="Visit corrupt on IRC" href="irc://irc.corrupt-net.org:6667/pre" target="_blank">
|
||||
Corrupt-Net
|
||||
</a>
|
||||
{elseif {$result.source} == srrdb}
|
||||
<a title="Visit srrDB" href="{$site->dereferrer_link}http://www.srrdb.com/browse/{$result.title}"
|
||||
target="_blank">
|
||||
srrDB
|
||||
</a>
|
||||
{elseif {$result.source} == "#scnzb"}
|
||||
<a title="Visit srrDB" href="irc://irc.Prison.NET:6667/scnzb" target="_blank">
|
||||
srrDB
|
||||
</a>
|
||||
{elseif {$result.source} == "#tvnzb"}
|
||||
<a title="Visit srrDB" href="irc://irc.Prison.NET:6667/tvnzb" target="_blank">
|
||||
srrDB
|
||||
</a>
|
||||
{elseif {$result.source} == "usenet-crawler"}
|
||||
<a title="Visit Usenet-Crawler"
|
||||
href="{$site->dereferrer_link}http://www.usenet-crawler.com/predb?q={$result.title}"
|
||||
target="_blank">
|
||||
Usenet-Crawler
|
||||
</a>
|
||||
{elseif {$result.source} == womble}
|
||||
<a title="Visit Womble" href="{$site->dereferrer_link}http://www.newshost.co.za/?s={$result.title}"
|
||||
target="_blank">
|
||||
Womble
|
||||
</a>
|
||||
{elseif {$result.source} == zenet}
|
||||
<a title="Visit ZEnet" href="{$site->dereferrer_link}http://pre.zenet.org/?search={$result.title}"
|
||||
target="_blank">
|
||||
ZEnet
|
||||
</a>
|
||||
{else}
|
||||
{$result.source}
|
||||
{/if}
|
||||
</td>
|
||||
<td class="prehash" style="text-align:center;">
|
||||
{if is_numeric({$result.requestid}) && {$result.requestid} != 0}
|
||||
<a
|
||||
class="requestid"
|
||||
title="{$result.requestid}"
|
||||
href="{$smarty.const.WWW_TOP}/search?searchadvr=&searchadvsubject={$result.requestid}
|
||||
<div class="box-body">
|
||||
<div class="box-inner">
|
||||
<div class="row">
|
||||
<div class="col-xlg-12 portlets">
|
||||
<div class="panel">
|
||||
<div class="panel-content pagination2">
|
||||
<div class="row">
|
||||
<div class="col-md-8">
|
||||
<table class="data table table-condensed table-striped table-responsive table-hover">
|
||||
<tr>
|
||||
<th style="width: auto"> Date</th>
|
||||
<th style="width: auto"> Title</th>
|
||||
<th style="width: auto"> Category</th>
|
||||
<th style="width: auto"> Source</th>
|
||||
<th style="width: auto"> Reqid</th>
|
||||
<th style="width: auto"> Size</th>
|
||||
<th style="width: auto"> Files</th>
|
||||
<th></th>
|
||||
<th></th>
|
||||
</tr>
|
||||
{foreach from=$results item=result}
|
||||
<tr class="{cycle values=",alt"}">
|
||||
<td class="prehash" style="text-align:center;">
|
||||
{$result.predate|date_format:"%Y-%m-%d %H:%M:%S"}
|
||||
</td>
|
||||
<td class="prehash" style="text-align:center;">
|
||||
{if isset($result.guid)}
|
||||
<a style="font-style:italic;text-decoration:underline;color:#{if $result.nuked == 1}009933{elseif $result.nuked > 1}990000{/if};"
|
||||
class="title" title="View details"
|
||||
href="{$smarty.const.WWW_TOP}/details/{$result.guid}/{$result.title|escape:"htmlall"}">
|
||||
<span title="{if $result.nuked == 1}UNNUKED: {$result.nukereason|escape:"htmlall"}{elseif $result.nuked > 1}NUKED: {$result.nukereason|escape:"htmlall"}{else}{$result.title|escape:"htmlall"}{/if}">{$result.title|escape:"htmlall"}</span>
|
||||
</a>
|
||||
{else}
|
||||
<span style="color:#{if $result.nuked == 1}009933{elseif $result.nuked > 1}990000{/if};"
|
||||
title="{if $result.nuked == 1}UNNUKED: {$result.nukereason|escape:"htmlall"}{elseif $result.nuked > 1}NUKED: {$result.nukereason|escape:"htmlall"}{else}{$result.title|escape:"htmlall"}{/if}">{$result.title|escape:"htmlall"}</span>
|
||||
{/if}
|
||||
</td>
|
||||
<td class="prehash" style="text-align:center;">
|
||||
{* Console *}
|
||||
{* Xbox 360 *}
|
||||
{if {$result.category} == 'XBOX360'}
|
||||
<a class="title" title="View category XBOX 360"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=1050">Console
|
||||
Xbox
|
||||
360</a>
|
||||
{* Movies *}
|
||||
{elseif in_array({$result.category}, array('Movies'))}
|
||||
<a class="title" title="View category Movies"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=2000">Movies</a>
|
||||
{* SD *}
|
||||
{elseif in_array({$result.category}, array('movies-sd', 'Movies: STD', 'XVid'))}
|
||||
<a class="title" title="View category Movies SD"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=2030">Movies
|
||||
SD</a>
|
||||
{* HD *}
|
||||
{elseif in_array({$result.category}, array('Movies: HD', 'X264'))}
|
||||
<a class="title" title="View category Movies HD"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=2040">Movies
|
||||
HD</a>
|
||||
{* BluRay *}
|
||||
{elseif in_array({$result.category}, array('BLURAY'))}
|
||||
<a class="title" title="View category BluRay"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=2060">Movies
|
||||
BluRay</a>
|
||||
{* DVD *}
|
||||
{elseif in_array({$result.category}, array('DVDR', 'Movies: DVD'))}
|
||||
<a class="title" title="View category DVDR"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=2070">DVD</a>
|
||||
{* Audio *}
|
||||
{elseif in_array({$result.category}, array('music-audio'))}
|
||||
<a class="title" title="View category Music"
|
||||
href="{$smarty.const.WWW_TOP}/music">Audio</a>
|
||||
{* MP3 *}
|
||||
{elseif in_array({$result.category}, array('MP3', 'Music: MP3'))}
|
||||
<a class="title" title="View category MP3"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=3010">MP3</a>
|
||||
{* Video *}
|
||||
{elseif in_array({$result.category}, array('MVid', 'Music: MVid'))}
|
||||
<a class="title" title="View category Audio Video"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=3020">Music
|
||||
Videos</a>
|
||||
{* Audiobook *}
|
||||
{elseif in_array({$result.category}, array('audiobook', 'Audiobook'))}
|
||||
<a class="title" title="View category Audiobook"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=3030">Audiobook</a>
|
||||
{* Lossless *}
|
||||
{elseif in_array({$result.category}, array('FLAC', 'Music: FLAC'))}
|
||||
<a class="title" title="View category Music Lossless"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=3040">Lossless
|
||||
Music</a>
|
||||
{* PC *}
|
||||
{* 0day *}
|
||||
{elseif in_array({$result.category}, array('0DAY', 'APPS', 'Apps: PC', 'Apps: Linux', 'DOX'))}
|
||||
<a class="title" title="View category PC 0day"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=4010">PC
|
||||
0DAY</a>
|
||||
{* Mac *}
|
||||
{elseif in_array({$result.category}, array('Apps: MAC', 'Games: MAC'))}
|
||||
<a class="title" title="View category PC Mac"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=4030">PC
|
||||
Mac</a>
|
||||
{* Phone-Other *}
|
||||
{elseif in_array({$result.category}, array('Apps: Phone', 'PDA'))}
|
||||
<a class="title" title="View category Phone Other"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=4040">Phone
|
||||
Other</a>
|
||||
{* Games *}
|
||||
{elseif in_array({$result.category}, array('GAMES', 'Games: PC', 'Games: Other'))}
|
||||
<a class="title" title="View category PC Games"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=4050">PC
|
||||
Games</a>
|
||||
{* TV *}
|
||||
{elseif in_array({$result.category}, array('TV'))}
|
||||
<a class="title" title="View category TV"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=5000">TV</a>
|
||||
{* SD *}
|
||||
{elseif in_array({$result.category}, array('TV-DVDRIP', 'tv-sd', 'TV: STD', 'TV-XVid'))}
|
||||
<a class="title" title="View category TV SD"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=5030">SDTV</a>
|
||||
{* HD *}
|
||||
{elseif in_array({$result.category}, array('tv-hd', 'TV: HD', 'TV-x264', 'TV-X264'))}
|
||||
<a class="title" title="View category TV HD"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=5040">HDTV</a>
|
||||
{* XXX *}
|
||||
{elseif in_array({$result.category}, array('XXX'))}
|
||||
<a class="title" title="View category XXX"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=6000">XXX</a>
|
||||
{* DVD *}
|
||||
{elseif in_array({$result.category}, array('XXX: DVD'))}
|
||||
<a class="title" title="View category XXX DVD"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=6010">XXX
|
||||
DVD</a>
|
||||
{* XviD *}
|
||||
{elseif in_array({$result.category}, array('XXX: SD-CLIPS', 'XXX: MOVIES-SD'))}
|
||||
<a class="title" title="View category XXX XviD"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=6030">XXX
|
||||
SD</a>
|
||||
{* x264 *}
|
||||
{elseif in_array({$result.category}, array('XXX: HD-CLIPS', 'XXX: MOVIES-HD'))}
|
||||
<a class="title" title="View category XXX x264"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=6040">XXX
|
||||
HD</a>
|
||||
{* Other *}
|
||||
{elseif in_array({$result.category}, array('xxx-videos'))}
|
||||
<a class="title" title="View category XXX Other"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=6050">XXX
|
||||
Other</a>
|
||||
{* Imageset *}
|
||||
{elseif in_array({$result.category}, array('XXX-IMGSET'))}
|
||||
<a class="title" title="View category XXX Imageset"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=6060">XXX
|
||||
Imagesets</a>
|
||||
{* Books *}
|
||||
{elseif in_array({$result.category}, array('EBOOK'))}
|
||||
<a class="title" title="View category Books"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=8000">Ebooks</a>
|
||||
{* Other *}
|
||||
{elseif in_array({$result.category}, array('Other: E-Books'))}
|
||||
<a class="title" title="View category Books Other"
|
||||
href="{$smarty.const.WWW_TOP}/browse?t=8050">Ebooks
|
||||
Other</a>
|
||||
{elseif in_array({$result.category}, array('', 'PRE'))}
|
||||
N/A
|
||||
{else}
|
||||
{$result.category}
|
||||
{/if}
|
||||
</td>
|
||||
<td class="prehash" style="text-align:center;">
|
||||
{if {$result.source} == abgx}
|
||||
<a title="Visit abgx"
|
||||
href="{$site->dereferrer_link}http://www.abgx.net/rss/x360/posted.rss"
|
||||
target="_blank">
|
||||
abgx.net
|
||||
</a>
|
||||
{elseif in_array({$result.source}, array('abErotica', 'abMooVee', 'abTeeVee', 'abForeign'))}
|
||||
<a title="Visit allfilled {$result.source}"
|
||||
href="{$site->dereferrer_link}http://{$result.source}.allfilled.com/search.php?q={$result.title}&Search=Search"
|
||||
target="_blank">
|
||||
{$result.source}
|
||||
</a>
|
||||
{elseif $result.source|strpos:'#a.b.' !== false}
|
||||
<a title="Visit {$result.source} on IRC"
|
||||
href="irc://irc.Prison.NET:6667/{str_replace('#a.b.', 'alt.binaries.', {$result.source})}"
|
||||
target="_blank">
|
||||
{$result.source}
|
||||
</a>
|
||||
{elseif {$result.source} == omgwtfnzbs}
|
||||
<a title="Visit omgwtfnzbs"
|
||||
href="{$site->dereferrer_link}http://rss.omgwtfnzbs.org/rss-info.php"
|
||||
target="_blank">
|
||||
omgwtfnzbs
|
||||
</a>
|
||||
{elseif {$result.source} == orlydb}
|
||||
<a title="Visit ORLYDB"
|
||||
href="{$site->dereferrer_link}http://orlydb.com/?q={$result.title}"
|
||||
target="_blank">
|
||||
ORLYDB
|
||||
</a>
|
||||
{elseif {$result.source} == predbme}
|
||||
<a title="Visit PreDB.me"
|
||||
href="{$site->dereferrer_link}http://predb.me/?search={$result.title}"
|
||||
target="_blank">
|
||||
PreDB
|
||||
</a>
|
||||
{elseif {$result.source} == prelist}
|
||||
<a title="Visit Prelist"
|
||||
href="{$site->dereferrer_link}http://www.prelist.ws/?search={$result.title}"
|
||||
target="_blank">
|
||||
Prelist
|
||||
</a>
|
||||
{elseif {$result.source} == "#Pre@zenet"}
|
||||
<a title="Visit zenet on IRC" href="irc://irc.zenet.org:6667/Pre"
|
||||
target="_blank">
|
||||
Zenet IRC
|
||||
</a>
|
||||
{elseif {$result.source} == "#pre@corrupt"}
|
||||
<a title="Visit corrupt on IRC"
|
||||
href="irc://irc.corrupt-net.org:6667/pre"
|
||||
target="_blank">
|
||||
Corrupt-Net
|
||||
</a>
|
||||
{elseif {$result.source} == srrdb}
|
||||
<a title="Visit srrDB"
|
||||
href="{$site->dereferrer_link}http://www.srrdb.com/browse/{$result.title}"
|
||||
target="_blank">
|
||||
srrDB
|
||||
</a>
|
||||
{elseif {$result.source} == "#scnzb"}
|
||||
<a title="Visit srrDB" href="irc://irc.Prison.NET:6667/scnzb"
|
||||
target="_blank">
|
||||
srrDB
|
||||
</a>
|
||||
{elseif {$result.source} == "#tvnzb"}
|
||||
<a title="Visit srrDB" href="irc://irc.Prison.NET:6667/tvnzb"
|
||||
target="_blank">
|
||||
srrDB
|
||||
</a>
|
||||
{elseif {$result.source} == "usenet-crawler"}
|
||||
<a title="Visit Usenet-Crawler"
|
||||
href="{$site->dereferrer_link}http://www.usenet-crawler.com/predb?q={$result.title}"
|
||||
target="_blank">
|
||||
Usenet-Crawler
|
||||
</a>
|
||||
{elseif {$result.source} == womble}
|
||||
<a title="Visit Womble"
|
||||
href="{$site->dereferrer_link}http://www.newshost.co.za/?s={$result.title}"
|
||||
target="_blank">
|
||||
Womble
|
||||
</a>
|
||||
{elseif {$result.source} == zenet}
|
||||
<a title="Visit ZEnet"
|
||||
href="{$site->dereferrer_link}http://pre.zenet.org/?search={$result.title}"
|
||||
target="_blank">
|
||||
ZEnet
|
||||
</a>
|
||||
{else}
|
||||
{$result.source}
|
||||
{/if}
|
||||
</td>
|
||||
<td class="prehash" style="text-align:center;">
|
||||
{if is_numeric({$result.requestid}) && {$result.requestid} != 0}
|
||||
<a
|
||||
class="requestid"
|
||||
title="{$result.requestid}"
|
||||
href="{$smarty.const.WWW_TOP}/search?searchadvr=&searchadvsubject={$result.requestid}
|
||||
&searchadvposter=&searchadvdaysnew=&searchadvdaysold=&searchadvgroups=-1&searchadvcat=-1
|
||||
&searchadvsizefrom=-1&searchadvsizeto=-1&searchadvhasnfo=0&searchadvhascomments=0&search_type=adv"
|
||||
>
|
||||
{$result.requestid}
|
||||
</a>
|
||||
{else}
|
||||
N/A
|
||||
{/if}
|
||||
</td>
|
||||
<td class="prehash" style="text-align:center;">
|
||||
{if not in_array({$result.size}, array('NULL', '', '0MB'))}
|
||||
{if strpos($result.size, 'MB') != false && {$result.size|regex_replace:"/(\.\d|,|MB)+/":''|count_characters} > 3}
|
||||
{math equation=($result.size|regex_replace:'/(\.\d|,|MB)+/':'' / 1024)|round}GB
|
||||
{else}
|
||||
{$result.size|regex_replace:"/(\.\d|,)+/":''}
|
||||
{/if}
|
||||
{else}
|
||||
N/A
|
||||
{/if}
|
||||
</td>
|
||||
<td class="prehash" style="text-align:center;">
|
||||
{if isset($result.files)}
|
||||
{$result.files}
|
||||
{else}
|
||||
N/A
|
||||
{/if}
|
||||
</td>
|
||||
<td class="prehash" style="text-align:center;">
|
||||
<a
|
||||
style="float: right;"
|
||||
title="NzbIndex"
|
||||
href="{$site->dereferrer_link}http://nzbindex.com/search/?q={$result.title}"
|
||||
target="_blank"
|
||||
>
|
||||
<img src="{$smarty.const.WWW_TOP}/templates/omicron/images/icons/nzbindex.png"/>
|
||||
|
||||
</a>
|
||||
</td>
|
||||
<td class="prehash" style="text-align:center;">
|
||||
<a
|
||||
style="float: right;"
|
||||
title="BinSearch"
|
||||
href="{$site->dereferrer_link}http://binsearch.info/?q={$result.title}"
|
||||
target="_blank"
|
||||
>
|
||||
<img src="{$smarty.const.WWW_TOP}/templates/omicron/images/icons/binsearch.png"/>
|
||||
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</table>
|
||||
<pager style="padding-bottom:10px;">
|
||||
>
|
||||
{$result.requestid}
|
||||
</a>
|
||||
{else}
|
||||
N/A
|
||||
{/if}
|
||||
</td>
|
||||
<td class="prehash" style="text-align:center;">
|
||||
{if not in_array({$result.size}, array('NULL', '', '0MB'))}
|
||||
{if strpos($result.size, 'MB') != false && {$result.size|regex_replace:"/(\.\d|,|MB)+/":''|count_characters} > 3}
|
||||
{math equation=($result.size|regex_replace:'/(\.\d|,|MB)+/':'' / 1024)|round}GB
|
||||
{else}
|
||||
{$result.size|regex_replace:"/(\.\d|,)+/":''}
|
||||
{/if}
|
||||
{else}
|
||||
N/A
|
||||
{/if}
|
||||
</td>
|
||||
<td class="prehash" style="text-align:center;">
|
||||
{if isset($result.files)}
|
||||
{$result.files}
|
||||
{else}
|
||||
N/A
|
||||
{/if}
|
||||
</td>
|
||||
<td class="prehash" style="text-align:center;">
|
||||
<a
|
||||
style="float: right;"
|
||||
title="NzbIndex"
|
||||
href="{$site->dereferrer_link}http://nzbindex.com/search/?q={$result.title}"
|
||||
target="_blank"
|
||||
>
|
||||
<img src="{$smarty.const.WWW_TOP}/templates/omicron/images/icons/nzbindex.png"/>
|
||||
|
||||
</a>
|
||||
</td>
|
||||
<td class="prehash" style="text-align:center;">
|
||||
<a
|
||||
style="float: right;"
|
||||
title="BinSearch"
|
||||
href="{$site->dereferrer_link}http://binsearch.info/?q={$result.title}"
|
||||
target="_blank"
|
||||
>
|
||||
<img src="{$smarty.const.WWW_TOP}/templates/omicron/images/icons/binsearch.png"/>
|
||||
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<div style="padding-bottom:10px;">
|
||||
{$pager}
|
||||
</pager>
|
||||
</div>
|
||||
@@ -27,7 +27,7 @@
|
||||
<tbody>
|
||||
<tr valign="top">
|
||||
<td>
|
||||
<table class="table table-condensed table-striped responsive">
|
||||
<table class="table table-condensed table-striped table-responsive table-hover">
|
||||
<tbody>
|
||||
<tr class="bg-primary">
|
||||
<td colspan="2" style="padding-left: 8px;"><strong>General</strong>
|
||||
@@ -67,7 +67,7 @@
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table class="table table-condensed table-striped responsive">
|
||||
<table class="data table table-condensed table-striped table-responsive table-hover">
|
||||
<tbody>
|
||||
<tr class="bg-primary">
|
||||
<td colspan="2" style="padding-left: 8px;"><strong>API &
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
<tbody>
|
||||
<tr valign="top">
|
||||
<td>
|
||||
<table class="table table-condensed table-striped responsive">
|
||||
<table class="data table table-condensed table-striped table-responsive table-hover">
|
||||
<tbody>
|
||||
<tr class="bg-primary">
|
||||
<td colspan="2" style="padding-left: 8px;">
|
||||
@@ -70,7 +70,7 @@
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table class="table table-condensed table-striped responsive">
|
||||
<table class="data table table-condensed table-striped table-responsive table-hover">
|
||||
<tbody>
|
||||
<tr class="bg-primary">
|
||||
<td colspan="2" style="padding-left: 8px;"><strong>Excluded
|
||||
@@ -84,7 +84,7 @@
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table class="table table-condensed table-striped responsive">
|
||||
<table class="data table table-condensed table-striped table-responsive table-hover">
|
||||
<tbody>
|
||||
<tr class="bg-primary">
|
||||
<td colspan="2" style="padding-left: 8px;"><strong>UI
|
||||
@@ -156,7 +156,7 @@
|
||||
function.
|
||||
<br/>
|
||||
{if $page->settings->getSetting('sabintegrationtype') != 1}
|
||||
<table class="table table-condensed table-striped responsive">
|
||||
<table class="data table table-condensed table-striped table-responsive table-hover">
|
||||
<tbody>
|
||||
<tr class="bg-primary">
|
||||
<td colspan="2" style="padding-left: 8px;"><strong>Queue
|
||||
@@ -175,7 +175,7 @@
|
||||
</table>
|
||||
{/if}
|
||||
{if $user.queuetype == 1 && $page->settings->getSetting('sabintegrationtype') == 2}
|
||||
<table class="table table-condensed table-striped responsive">
|
||||
<table class="data table table-condensed table-striped table-responsive table-hover">
|
||||
<tbody>
|
||||
<tr class="bg-primary">
|
||||
<td colspan="2" style="padding-left: 8px;"><strong>SABnzbd</strong>
|
||||
@@ -234,7 +234,7 @@
|
||||
</table>
|
||||
{/if}
|
||||
{if $user.queuetype == 2 && ($page->settings->getSetting('sabintegrationtype') == 0 || $page->settings->getSetting('sabintegrationtype') == 2)}
|
||||
<table class="table table-condensed table-striped responsive">
|
||||
<table class="data table table-condensed table-striped table-responsive table-hover">
|
||||
<tbody>
|
||||
<tr class="bg-primary">
|
||||
<td colspan="2" style="padding-left: 8px;"><strong>NZBget</strong>
|
||||
@@ -269,7 +269,7 @@
|
||||
</tbody>
|
||||
</table>
|
||||
{/if}
|
||||
<table class="table table-condensed table-striped responsive">
|
||||
<table class="data table table-condensed table-striped table-responsive table-hover">
|
||||
<tbody>
|
||||
<tr class="bg-primary">
|
||||
<td colspan="2" style="padding-left: 8px;"><strong>NZB
|
||||
@@ -300,7 +300,7 @@
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<table class="table table-condensed table-striped responsive">
|
||||
<table class="data table table-condensed table-striped table-responsive table-hover">
|
||||
<tbody>
|
||||
<tr class="bg-primary">
|
||||
<td colspan="2" style="padding-left: 8px;"><strong>Couchpotato</strong>
|
||||
|
||||
@@ -168,7 +168,7 @@
|
||||
{$pager}
|
||||
</div>
|
||||
</div>
|
||||
<table class="data table table-condensed table-striped responsive" id="browsetable">
|
||||
<table class="data table table-condensed table-striped table-responsive table-hover" id="browsetable">
|
||||
<tr>
|
||||
<th></th>
|
||||
<th>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
{$site->adbrowse}
|
||||
|
||||
{if isset($data) && $data|@count > 0}
|
||||
<table class="data highlight icons table table-striped" id="coverstable">
|
||||
<table class="data highlight icons table table-condensed table-striped table-responsive table-hover" id="coverstable">
|
||||
{foreach $data as $result}
|
||||
<tr class="{cycle values=",alt"}">
|
||||
<td class="mid">
|
||||
|
||||
@@ -90,7 +90,7 @@
|
||||
<div class="panel">
|
||||
<div class="panel-content pagination2">
|
||||
|
||||
<table style="width:100%;" class="data table table-condensed table-striped table-layout"
|
||||
<table style="width:100%;" class="data table table-condensed table-striped table-responsive table-hover"
|
||||
id="browsetable">
|
||||
{foreach $animeEpisodeTitles as $animeEpno => $animeEpisodeTitle}
|
||||
<tr>
|
||||
@@ -175,8 +175,4 @@
|
||||
{/foreach}
|
||||
{/foreach}
|
||||
</table>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
@@ -23,7 +23,7 @@
|
||||
{$site->adbrowse}
|
||||
|
||||
{if $animelist|@count > 0}
|
||||
<table style="width:100%;" class="data highlight icons table table-striped" id="browsetable">
|
||||
<table style="width:100%;" class="data table table-condensed table-striped table-responsive table-hover" id="browsetable">
|
||||
{foreach $animelist as $aletter => $anime}
|
||||
<tr>
|
||||
<td colspan="10">
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<a href="{$smarty.const.WWW_TOP}/details/{$rel.guid}/{$rel.searchname|escape:"htmlall"}">{$rel.searchname|escape:'htmlall'}</a>
|
||||
</h2>
|
||||
|
||||
<table style="width:100%;margin-bottom:10px;" class="data Sortable highlight">
|
||||
<table class="data table table-striped table-responsive sortable table-condensed table-hover">
|
||||
|
||||
<tr>
|
||||
<th>#</th>
|
||||
|
||||
@@ -11,216 +11,235 @@
|
||||
</div>
|
||||
|
||||
{if $results|@count > 0}
|
||||
{foreach from=$results item=result}
|
||||
<div id="moviefull" style="min-height:340px;">
|
||||
{if $result.cover == 1}
|
||||
<img class="pull-right" style="margin-right:50px; max-height:278px;"
|
||||
alt="{$result.title|escape:"htmlall"} Logo"
|
||||
src="{$smarty.const.WWW_TOP}/covers/movies/{$result.imdbid}-cover.jpg"/>
|
||||
{else}
|
||||
<img class="pull-right" style="margin-right:50px; max-height:278px;"
|
||||
alt="{$result.title|escape:"htmlall"} Logo"
|
||||
src="{$serverroot}templates/omicron/images/nomoviecover.jpg"/>
|
||||
{/if}
|
||||
<span class="h1" style="display:inline;">{$result.title|escape:"htmlall"} ({$result.year})</span><a
|
||||
class="btn btn-transparent btn-primary" target="_blank"
|
||||
href="{$site->dereferrer_link}http://www.imdb.com/title/tt{$result.imdbid}/"
|
||||
name="imdb{$result.imdbid}" title="View IMDB page for this movie">View on IMDB</a>
|
||||
<h4>{if $result.genre != ''}{$result.genre|replace:"|":" / "}{/if}</h4>
|
||||
{if $result.tagline != ''}
|
||||
<p class="lead" style="margin-right:300px;">"{$result.tagline|escape:"htmlall"}"</p>
|
||||
{/if}
|
||||
<dl style="margin-right:300px;">
|
||||
{if $result.plot != ''}
|
||||
<dt>Plot</dt>
|
||||
<dd>{$result.plot|escape:"htmlall"}</dd>
|
||||
<div class="box-body">
|
||||
{foreach from=$results item=result}
|
||||
<div id="moviefull" style="min-height:340px;">
|
||||
{if $result.cover == 1}
|
||||
<img class="pull-right" style="margin-right:50px; max-height:278px;"
|
||||
alt="{$result.title|escape:"htmlall"} Logo"
|
||||
src="{$smarty.const.WWW_TOP}/covers/movies/{$result.imdbid}-cover.jpg"/>
|
||||
{else}
|
||||
<img class="pull-right" style="margin-right:50px; max-height:278px;"
|
||||
alt="{$result.title|escape:"htmlall"} Logo"
|
||||
src="{$serverroot}templates/omicron/images/nomoviecover.jpg"/>
|
||||
{/if}
|
||||
{if $result.rating != ''}
|
||||
<dt>Rating</dt>
|
||||
<dd>{$result.rating}
|
||||
/10 {if $result.ratingcount != ''}({$result.ratingcount|number_format} votes)</dd>{/if}
|
||||
<span class="h1" style="display:inline;">{$result.title|escape:"htmlall"} ({$result.year})</span><a
|
||||
class="btn btn-transparent btn-primary" target="_blank"
|
||||
href="{$site->dereferrer_link}http://www.imdb.com/title/tt{$result.imdbid}/"
|
||||
name="imdb{$result.imdbid}" title="View IMDB page for this movie">View on IMDB</a>
|
||||
<h4>{if $result.genre != ''}{$result.genre|replace:"|":" / "}{/if}</h4>
|
||||
{if $result.tagline != ''}
|
||||
<p class="lead" style="margin-right:300px;">"{$result.tagline|escape:"htmlall"}"</p>
|
||||
{/if}
|
||||
{if $result.director != ''}
|
||||
<dt>Director</dt>
|
||||
<dd>{$result.director|replace:"|":", "}</dd>
|
||||
{/if}
|
||||
{if $result.actors != ''}
|
||||
<dt>Actors</dt>
|
||||
<dd>{$result.actors|replace:"|":", "}</dd>
|
||||
{/if}
|
||||
</dl>
|
||||
</div>
|
||||
<form id="nzb_multi_operations_form" action="get">
|
||||
<div class="well well-small">
|
||||
<div class="nzb_multi_operations">
|
||||
{if $section != ''}View:
|
||||
<a href="{$smarty.const.WWW_TOP}/{$section}?t={$category}">Covers</a>
|
||||
|
|
||||
<b>List</b>
|
||||
<br/>
|
||||
{/if}
|
||||
With Selected:
|
||||
<div class="btn-group">
|
||||
<input type="button" class="nntmux_multi_operations_download btn btn-sm btn-success"
|
||||
value="Download NZBs"/>
|
||||
<input type="button" class="nntmux_multi_operations_cart btn btn-sm btn-info" value="Add to Cart"/>
|
||||
{if isset($sabintegrated)}
|
||||
<input type="button" class="nzb_multi_operations_sab btn btn-sm btn-primary"
|
||||
value="Send to Queue"/>
|
||||
<dl style="margin-right:300px;">
|
||||
{if $result.plot != ''}
|
||||
<dt>Plot</dt>
|
||||
<dd>{$result.plot|escape:"htmlall"}</dd>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
{if isset($isadmin)}
|
||||
<div class="pull-right">
|
||||
Admin:
|
||||
<div class="btn-group">
|
||||
<input type="button" class="nntmux_multi_operations_edit btn btn-sm btn-warning"
|
||||
value="Edit"/>
|
||||
<input type="button" class="nntmux_multi_operations_delete btn btn-sm btn-danger"
|
||||
value="Delete"/>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
{if $result.rating != ''}
|
||||
<dt>Rating</dt>
|
||||
<dd>{$result.rating}
|
||||
/10 {if $result.ratingcount != ''}({$result.ratingcount|number_format} votes)</dd>{/if}
|
||||
{/if}
|
||||
{if $result.director != ''}
|
||||
<dt>Director</dt>
|
||||
<dd>{$result.director|replace:"|":", "}</dd>
|
||||
{/if}
|
||||
{if $result.actors != ''}
|
||||
<dt>Actors</dt>
|
||||
<dd>{$result.actors|replace:"|":", "}</dd>
|
||||
{/if}
|
||||
</dl>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-xlg-12 portlets">
|
||||
<div class="panel">
|
||||
<div class="panel-content pagination2">
|
||||
<table style="width:100%;" class="table table-condensed table-striped">
|
||||
<tr>
|
||||
<th>
|
||||
<input id="chkSelectAll" type="checkbox" class="nntmux_check_all"/>
|
||||
<label for="chkSelectAll" style="display:none;">Select All</label>
|
||||
</th>
|
||||
<form id="nzb_multi_operations_form" action="get">
|
||||
<div class="well well-small">
|
||||
<div class="nzb_multi_operations">
|
||||
{if $section != ''}View:
|
||||
<a href="{$smarty.const.WWW_TOP}/{$section}?t={$category}">Covers</a>
|
||||
|
|
||||
<b>List</b>
|
||||
<br/>
|
||||
{/if}
|
||||
With Selected:
|
||||
<div class="btn-group">
|
||||
<input type="button" class="nntmux_multi_operations_download btn btn-sm btn-success"
|
||||
value="Download NZBs"/>
|
||||
<input type="button" class="nntmux_multi_operations_cart btn btn-sm btn-info"
|
||||
value="Add to Cart"/>
|
||||
{if isset($sabintegrated)}
|
||||
<input type="button" class="nzb_multi_operations_sab btn btn-sm btn-primary"
|
||||
value="Send to Queue"/>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<th>Name<br/>
|
||||
<a title="Sort Descending" href="{$orderbyname_desc}">
|
||||
<i class="fa fa-icon-caret-down"></i>
|
||||
</a>
|
||||
<a title="Sort Ascending" href="{$orderbyname_asc}">
|
||||
<i class="fa fa-icon-caret-up"></i>
|
||||
</a>
|
||||
</th>
|
||||
{if isset($isadmin)}
|
||||
<div class="pull-right">
|
||||
Admin:
|
||||
<div class="btn-group">
|
||||
<input type="button" class="nntmux_multi_operations_edit btn btn-sm btn-warning"
|
||||
value="Edit"/>
|
||||
<input type="button" class="nntmux_multi_operations_delete btn btn-sm btn-danger"
|
||||
value="Delete"/>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-xlg-12 portlets">
|
||||
<div class="panel">
|
||||
<div class="panel-content pagination2">
|
||||
<table style="width:100%;"
|
||||
class="data table table-condensed table-striped table-responsive table-hover">
|
||||
<tr>
|
||||
<th>
|
||||
<input id="chkSelectAll" type="checkbox" class="nntmux_check_all"/>
|
||||
<label for="chkSelectAll" style="display:none;">Select All</label>
|
||||
</th>
|
||||
|
||||
<th>Category<br/>
|
||||
<a title="Sort Descending" href="{$orderbycat_desc}">
|
||||
<i class="fa fa-icon-caret-down"></i>
|
||||
</a>
|
||||
<a title="Sort Ascending" href="{$orderbycat_asc}">
|
||||
<i class="fa fa-icon-caret-up"></i>
|
||||
</a>
|
||||
</th>
|
||||
<th>Name<br/>
|
||||
<a title="Sort Descending" href="{$orderbyname_desc}">
|
||||
<i class="fa fa-icon-caret-down"></i>
|
||||
</a>
|
||||
<a title="Sort Ascending" href="{$orderbyname_asc}">
|
||||
<i class="fa fa-icon-caret-up"></i>
|
||||
</a>
|
||||
</th>
|
||||
|
||||
<th>Posted<br/>
|
||||
<a title="Sort Descending" href="{$orderbyposted_desc}">
|
||||
<i class="fa fa-icon-caret-down"></i>
|
||||
</a>
|
||||
<a title="Sort Ascending" href="{$orderbyposted_asc}">
|
||||
<i class="fa fa-icon-caret-up"></i>
|
||||
</a>
|
||||
</th>
|
||||
<th>Category<br/>
|
||||
<a title="Sort Descending" href="{$orderbycat_desc}">
|
||||
<i class="fa fa-icon-caret-down"></i>
|
||||
</a>
|
||||
<a title="Sort Ascending" href="{$orderbycat_asc}">
|
||||
<i class="fa fa-icon-caret-up"></i>
|
||||
</a>
|
||||
</th>
|
||||
|
||||
<th>Size<br/>
|
||||
<a title="Sort Descending" href="{$orderbysize_desc}">
|
||||
<i class="fa fa-icon-caret-down"></i>
|
||||
</a>
|
||||
<a title="Sort Ascending" href="{$orderbysize_asc}">
|
||||
<i class="fa fa-icon-caret-up"></i>
|
||||
</a>
|
||||
</th>
|
||||
<th>Action</th>
|
||||
</tr>
|
||||
<th>Posted<br/>
|
||||
<a title="Sort Descending" href="{$orderbyposted_desc}">
|
||||
<i class="fa fa-icon-caret-down"></i>
|
||||
</a>
|
||||
<a title="Sort Ascending" href="{$orderbyposted_asc}">
|
||||
<i class="fa fa-icon-caret-up"></i>
|
||||
</a>
|
||||
</th>
|
||||
|
||||
{assign var="msplits" value=","|explode:$result.grp_release_id}
|
||||
{assign var="mguid" value=","|explode:$result.grp_release_guid}
|
||||
{assign var="mnfo" value=","|explode:$result.grp_release_nfoid}
|
||||
{assign var="mgrp" value=","|explode:$result.grp_release_grpname}
|
||||
{assign var="mname" value="#"|explode:$result.grp_release_name}
|
||||
{assign var="mpostdate" value=","|explode:$result.grp_release_postdate}
|
||||
{assign var="msize" value=","|explode:$result.grp_release_size}
|
||||
{assign var="mtotalparts" value=","|explode:$result.grp_release_totalparts}
|
||||
{assign var="mcomments" value=","|explode:$result.grp_release_comments}
|
||||
{assign var="mgrabs" value=","|explode:$result.grp_release_grabs}
|
||||
{assign var="mpass" value=","|explode:$result.grp_release_password}
|
||||
{assign var="minnerfiles" value=","|explode:$result.grp_rarinnerfilecount}
|
||||
{assign var="mhaspreview" value=","|explode:$result.grp_haspreview}
|
||||
{assign var="mcat" value=","|explode:$result.grp_release_categoryid}
|
||||
{assign var="mcatname" value=","|explode:$result.grp_release_categoryName}
|
||||
{foreach from=$msplits item=m}
|
||||
<tr class="{cycle values=",alt"}" id="guid{$mguid[$m@index]}">
|
||||
<td class="check"><input id="chk{$mguid[$m@index]|substr:0:7}" type="checkbox" class="nzb_check"
|
||||
value="{$mguid[$m@index]}"/></td>
|
||||
<td class="item">
|
||||
<a title="View details"
|
||||
href="{$smarty.const.WWW_TOP}/details/{$mguid[$m@index]}/{$mname[$m@index]|escape:"htmlall"}">{$mname[$m@index]|escape:"htmlall"|replace:".":" "}</a>
|
||||
<br/>
|
||||
<th>Size<br/>
|
||||
<a title="Sort Descending" href="{$orderbysize_desc}">
|
||||
<i class="fa fa-icon-caret-down"></i>
|
||||
</a>
|
||||
<a title="Sort Ascending" href="{$orderbysize_asc}">
|
||||
<i class="fa fa-icon-caret-up"></i>
|
||||
</a>
|
||||
</th>
|
||||
<th>Action</th>
|
||||
</tr>
|
||||
|
||||
{assign var="msplits" value=","|explode:$result.grp_release_id}
|
||||
{assign var="mguid" value=","|explode:$result.grp_release_guid}
|
||||
{assign var="mnfo" value=","|explode:$result.grp_release_nfoid}
|
||||
{assign var="mgrp" value=","|explode:$result.grp_release_grpname}
|
||||
{assign var="mname" value="#"|explode:$result.grp_release_name}
|
||||
{assign var="mpostdate" value=","|explode:$result.grp_release_postdate}
|
||||
{assign var="msize" value=","|explode:$result.grp_release_size}
|
||||
{assign var="mtotalparts" value=","|explode:$result.grp_release_totalparts}
|
||||
{assign var="mcomments" value=","|explode:$result.grp_release_comments}
|
||||
{assign var="mgrabs" value=","|explode:$result.grp_release_grabs}
|
||||
{assign var="mpass" value=","|explode:$result.grp_release_password}
|
||||
{assign var="minnerfiles" value=","|explode:$result.grp_rarinnerfilecount}
|
||||
{assign var="mhaspreview" value=","|explode:$result.grp_haspreview}
|
||||
{assign var="mcat" value=","|explode:$result.grp_release_categoryid}
|
||||
{assign var="mcatname" value=","|explode:$result.grp_release_categoryName}
|
||||
{foreach from=$msplits item=m}
|
||||
<tr class="{cycle values=",alt"}" id="guid{$mguid[$m@index]}">
|
||||
<td class="check"><input id="chk{$mguid[$m@index]|substr:0:7}"
|
||||
type="checkbox"
|
||||
class="nzb_check"
|
||||
value="{$mguid[$m@index]}"/></td>
|
||||
<td class="item">
|
||||
<a title="View details"
|
||||
href="{$smarty.const.WWW_TOP}/details/{$mguid[$m@index]}/{$mname[$m@index]|escape:"htmlall"}">{$mname[$m@index]|escape:"htmlall"|replace:".":" "}</a>
|
||||
<br/>
|
||||
<span class="label label-default">{$mgrabs[$m@index]}
|
||||
grab{if $mgrabs[$m@index] != 1}s{/if}</span>
|
||||
{if $mnfo[$m@index] > 0}<span class="label label-default"><a
|
||||
href="{$smarty.const.WWW_TOP}/nfo/{$mguid[$m@index]}" class="text-muted">NFO</a>
|
||||
</span>{/if}
|
||||
{if $mpass[$m@index] == 2}
|
||||
<i class="fa fa-icon-lock"></i>
|
||||
{elseif $mpass[$m@index] == 1}
|
||||
<i class="fa fa-icon-lock"></i>
|
||||
{/if}
|
||||
</td>
|
||||
<td class="less"><span class="label label-default">{$mcatname[$m@index]}</span></td>
|
||||
<td class="less mid" title="{$mpostdate[$m@index]}">{$mpostdate[$m@index]|timeago}</td>
|
||||
<td class="less right">{$msize[$m@index]|fsize_format:"MB"}</td>
|
||||
<td class="icons">
|
||||
<a title="Download NZB"
|
||||
href="{$smarty.const.WWW_TOP}/getnzb/{$mguid[$m@index]}/{$mname[$m@index]|escape:"htmlall"}"><i
|
||||
class="icon icon_nzb fa fa-download text-muted"></i></a>
|
||||
<a href="#" class="icon_cart text-muted"><i class="fa fa-shopping-cart" title="Add to Cart"></i></a>
|
||||
{if isset($sabintegrated)}<img class="icon_sab"
|
||||
src="{$smarty.const.WWW_TOP}/templates/baffi/images/icons/sabup.png"/>{/if}
|
||||
</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
{if $mnfo[$m@index] > 0}<span class="label label-default"><a
|
||||
href="{$smarty.const.WWW_TOP}/nfo/{$mguid[$m@index]}"
|
||||
class="text-muted">NFO</a>
|
||||
</span>{/if}
|
||||
{if $mpass[$m@index] == 2}
|
||||
<i class="fa fa-icon-lock"></i>
|
||||
{elseif $mpass[$m@index] == 1}
|
||||
<i class="fa fa-icon-lock"></i>
|
||||
{/if}
|
||||
</td>
|
||||
<td class="less"><span
|
||||
class="label label-default">{$mcatname[$m@index]}</span>
|
||||
</td>
|
||||
<td class="less mid"
|
||||
title="{$mpostdate[$m@index]}">{$mpostdate[$m@index]|timeago}</td>
|
||||
<td class="less right">{$msize[$m@index]|fsize_format:"MB"}</td>
|
||||
<td class="icons">
|
||||
<a title="Download NZB"
|
||||
href="{$smarty.const.WWW_TOP}/getnzb/{$mguid[$m@index]}/{$mname[$m@index]|escape:"htmlall"}"><i
|
||||
class="icon icon_nzb fa fa-download text-muted"></i></a>
|
||||
<a href="#" class="icon_cart text-muted"><i class="fa fa-shopping-cart"
|
||||
title="Add to Cart"></i></a>
|
||||
{if isset($sabintegrated)}<img class="icon_sab"
|
||||
src="{$smarty.const.WWW_TOP}/templates/baffi/images/icons/sabup.png"/>{/if}
|
||||
</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
|
||||
</table>
|
||||
<br/>
|
||||
{$pager}
|
||||
{if $results|@count > 10}
|
||||
<div class="well well-small">
|
||||
<div class="nzb_multi_operations">
|
||||
{if $section != ''}View:
|
||||
<a href="{$smarty.const.WWW_TOP}/{$section}?t={$category}">Covers</a>
|
||||
|
|
||||
<b>List</b>
|
||||
<br/>
|
||||
{/if}
|
||||
With Selected:
|
||||
<div class="btn-group">
|
||||
<input type="button" class="nzb_multi_operations_download btn btn-sm btn-success" value="Download NZBs" />
|
||||
<input type="button" class="nzb_multi_operations_cart btn btn-sm btn-info" value="Add to Cart" />
|
||||
{if isset($sabintegrated)}
|
||||
<input type="button" class="nzb_multi_operations_sab btn btn-sm btn-primary" value="Send to Queue"/>
|
||||
{/if}
|
||||
</div>
|
||||
</table>
|
||||
<hr>
|
||||
|
||||
{if isset($isadmin)}
|
||||
<div class="pull-right">
|
||||
Admin:
|
||||
<div class="btn-group">
|
||||
<input type="button" class="nzb_multi_operations_edit btn btn-sm btn-warning" value="Edit"/>
|
||||
<input type="button" class="nzb_multi_operations_delete btn btn-sm btn-danger" value="Delete"/>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
{/if}
|
||||
{/foreach}
|
||||
|
||||
{/if}
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{if $results|@count > 10}
|
||||
<div class="row">
|
||||
<div class="col-md-8">
|
||||
<div class="nzb_multi_operations">
|
||||
{if isset($section) && $section != ''}View:
|
||||
<a href="{$smarty.const.WWW_TOP}/{$section}?t={$category}">Covers</a>
|
||||
|
|
||||
<b>List</b>
|
||||
<br/>
|
||||
{/if}
|
||||
With Selected:
|
||||
<div class="btn-group">
|
||||
<input type="button"
|
||||
class="nzb_multi_operations_download btn btn-sm btn-success"
|
||||
value="Download NZBs"/>
|
||||
<input type="button"
|
||||
class="nzb_multi_operations_cart btn btn-sm btn-info"
|
||||
value="Add to Cart"/>
|
||||
{if isset($sabintegrated)}
|
||||
<input type="button"
|
||||
class="nzb_multi_operations_sab btn btn-sm btn-primary"
|
||||
value="Send to Queue"/>
|
||||
{/if}
|
||||
{if isset($nzbgetintegrated)}
|
||||
<input type="button"
|
||||
class="nzb_multi_operations_nzbget btn btn-sm btn-primary"
|
||||
value="Send to NZBGet"/>
|
||||
{/if}
|
||||
{if isset($isadmin)}
|
||||
<input type="button"
|
||||
class="nzb_multi_operations_edit btn btn-sm btn-warning"
|
||||
value="Edit"/>
|
||||
<input type="button"
|
||||
class="nzb_multi_operations_delete btn btn-sm btn-danger"
|
||||
value="Delete"/>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
{$pager}
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
{/foreach}
|
||||
</div>
|
||||
{/if}
|
||||
@@ -238,7 +238,7 @@
|
||||
<tbody>
|
||||
<tr valign="top">
|
||||
<td>
|
||||
<table class="table table-condensed table-striped responsive">
|
||||
<table class="data table table-condensed table-striped table-responsive table-hover">
|
||||
<tbody>
|
||||
{if $movie && $release.rageid < 0}
|
||||
<tr>
|
||||
@@ -572,7 +572,7 @@
|
||||
</div>
|
||||
<div id="pane5" class="tab-pane">
|
||||
{if $comments|@count > 0}
|
||||
<table class="table table-striped">
|
||||
<table class="tdata table table-condensed table-striped table-responsive table-hover">
|
||||
<tr>
|
||||
<th width="100">User</th>
|
||||
<th>Comment</th>
|
||||
@@ -626,7 +626,7 @@
|
||||
{if $reVideo.releaseid|@count > 0 || $reAudio|@count > 0}
|
||||
<div id="pane8" class="tab-pane">
|
||||
<table style="width:100%;"
|
||||
class="table table-striped table-responsive table-hover">
|
||||
class="data table table-condensed table-striped table-responsive table-hover">
|
||||
<tr>
|
||||
<th width="15%"></th>
|
||||
<th>Property</th>
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
|
||||
{$pager}
|
||||
|
||||
<table class="table table-striped table-bordered bootstrap-datatable datatable responsive">
|
||||
<table class="data table table-condensed table-striped table-responsive table-hover">
|
||||
<tr>
|
||||
<th width="125" class="mid">Date</th>
|
||||
<th class="left">Directory</th>
|
||||
|
||||
@@ -135,7 +135,7 @@
|
||||
{foreach $seasons as $seasonnum => $season name=tv}
|
||||
<div class="tab-pane{if $smarty.foreach.tv.first} active{/if} fade in"
|
||||
id="{$seasonnum}">
|
||||
<table class="tb_{$seasonnum} data table table-condensed table-striped table-layout"
|
||||
<table class="tb_{$seasonnum} data table table-condensed table-bordered table-responsive table-hover"
|
||||
id="browsetable">
|
||||
<thead>
|
||||
<tr>
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
|
||||
{if $serieslist|@count > 0}
|
||||
|
||||
<table class="dataTable data highlight icons table table-striped table-responsive" id="browsetable">
|
||||
<table class="data table table-condensed table-striped table-responsive table-hover icons" id="browsetable">
|
||||
{foreach $serieslist as $sletter => $series}
|
||||
<tr>
|
||||
<td colspan="10">
|
||||
|
||||
Reference in New Issue
Block a user