Private GIT

Skip to content
Snippets Groups Projects
Commit 9c00c65f authored by Chaosloth's avatar Chaosloth Committed by Nic Wolfe
Browse files

Added timezone support for comming episodes

parent 123a1332
No related branches found
No related tags found
No related merge requests found
#import sickbeard
#from sickbeard.common import *
#import pytz
#from pytz import common_timezones
#set global $title="Config - Episode Search"
#set global $header="Episode Download Options"
#set global $sbPath="../.."
<!--#set global $topmenu="config"#-->
#import os.path
#include $os.path.join($sickbeard.PROG_DIR, "data/interfaces/default/inc_top.tmpl")
<form action="saveTimezones" method="POST">
The following timezone settings apply to sick beard<br /><br />
<div class="EntryBlock">
<fieldset class="EntryFieldSet">
<legend>Timezone Settings</legend>
My timezone<br />
<select name="timezone_user">
#for $curTz in $common_timezones:
#if $curTz == sickbeard.TZ_USER:
<option value="$curTz" selected>$curTz</option>
#else
<option value="$curTz">$curTz</option>
#end if
#end for
</select><br />
<br />
Default show timezone<br />
<select name="timezone_eps">
#for $curTz in $common_timezones:
#if $curTz == sickbeard.TZ_EPS:
<option value="$curTz" selected>$curTz</option>
#else
<option value="$curTz">$curTz</option>
#end if
#end for
</select><br />
<br />
</fieldset>
</div>
<p>
<input type="submit" value="Save Changes">
</p>
</form>
#include $os.path.join($sickbeard.PROG_DIR, "data/interfaces/default/inc_bottom.tmpl")
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment