mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-05 17:05:03 -05:00
6713ce0981
Added git branch reset option to general settings github to help fix git update related issues. Added github username/password options to general settings github as a requirement for submitting issue tickets from app. Fixed issue with default ep status not showing correct value. Added ability to submit issue reports via errorlogs menu. Added errorlogs view button to error message displayed for webui errors.
55 lines
3.1 KiB
Cheetah
55 lines
3.1 KiB
Cheetah
#import sickbeard
|
|
#from sickbeard import db
|
|
#from sickbeard.helpers import anon_url
|
|
#import os.path
|
|
|
|
#set global $title="Configuration"
|
|
#set global $header="Configuration"
|
|
|
|
#set global $sbPath=".."
|
|
|
|
#set global $topmenu="config"#
|
|
#include $os.path.join($sickbeard.PROG_DIR, "gui/slick/interfaces/default/inc_top.tmpl")
|
|
|
|
#if $varExists('header')
|
|
<h1 class="header">$header</h1>
|
|
#else
|
|
<h1 class="title">$title</h1>
|
|
#end if
|
|
|
|
##set cpu_usage = $psutil.cpu_percent()
|
|
##set ram = $psutil.phymem_usage()
|
|
##set ram_total = $ram.total / 2**20
|
|
##set ram_used = $ram.used / 2**20
|
|
##set ram_free = $ram.free / 2**20
|
|
##set ram_percent_used = $ram.percent
|
|
##set disk = $psutil.disk_usage('/')
|
|
##set disk_total = $disk.total / 2**30
|
|
##set disk_used = $disk.used / 2**30
|
|
##set disk_free = $disk.free / 2**30
|
|
##set disk_percent_used = $disk.percent
|
|
|
|
<div id="config-content">
|
|
<table class="infoTable" cellspacing="1" border="0" cellpadding="0" width="100%">
|
|
<tr><td class="infoTableHeader">SR Version: </td><td class="infoTableCell">
|
|
#if $sickbeard.VERSION_NOTIFY
|
|
BRANCH: ($sickbeard.BRANCH) / COMMIT: ($sickbeard.CUR_COMMIT_HASH) <!-- – build.date //--><br />
|
|
#else
|
|
You don't have version checking turned on. Please turn on "Check for Update" in Config > General.<br />
|
|
#end if
|
|
</td></tr>
|
|
<tr><td class="infoTableHeader">SR Config file:</td><td class="infoTableCell">$sickbeard.CONFIG_FILE</td></tr>
|
|
<tr><td class="infoTableHeader">SR Database file:</td><td class="infoTableCell">$db.dbFilename()</td></tr>
|
|
<tr><td class="infoTableHeader">SR Cache Dir:</td><td class="infoTableCell">$sickbeard.CACHE_DIR</td></tr>
|
|
<tr><td class="infoTableHeader">SR Arguments:</td><td class="infoTableCell">$sickbeard.MY_ARGS</td></tr>
|
|
<tr><td class="infoTableHeader">SR Web Root:</td><td class="infoTableCell">$sickbeard.WEB_ROOT</td></tr>
|
|
<tr><td class="infoTableHeader">Python Version:</td><td class="infoTableCell">$sys.version[:120]</td></tr>
|
|
<tr class="infoTableSeperator"><td class="infoTableHeader"><i class="icon16-sb"></i> Homepage</td><td class="infoTableCell"><a href="<%= anon_url('http://www.sickrage.tv/') %>" rel="noreferrer" onclick="window.open(this.href, '_blank'); return false;">http://www.sickrage.tv/</a></td></tr>
|
|
<tr><td class="infoTableHeader"><i class="icon16-web"></i> Forums</td><td class="infoTableCell"><a href="<%= anon_url('http://sickrage.tv/forums/') %>" rel="noreferrer" onclick="window.open(this.href, '_blank'); return false;">http://sickrage.tv/forums/</a></td></tr>
|
|
<tr><td class="infoTableHeader"><i class="icon16-github"></i> Source</td><td class="infoTableCell"><a href="<%= anon_url('https://github.com/SiCKRAGETV/SickRage/') %>" rel="noreferrer" onclick="window.open(this.href, '_blank'); return false;">https://github.com/SiCKRAGETV/SickRage/</a></td></tr>
|
|
<tr><td class="infoTableHeader"><i class="icon16-mirc"></i> Internet Relay Chat</td><td class="infoTableCell"><a href="irc://irc.freenode.net/#sickrage" rel="noreferrer"><i>#sickrage</i> on <i>irc.freenode.net</i></a></td></tr>
|
|
</table>
|
|
</div>
|
|
|
|
#include $os.path.join($sickbeard.PROG_DIR,"gui/slick/interfaces/default/inc_bottom.tmpl")
|