Private GIT

Skip to content
Snippets Groups Projects
Commit a0b730f8 authored by Jonathon Saine's avatar Jonathon Saine
Browse files

Removed old css and html for the outdated config timezone page.

parent 462b10fb
No related branches found
No related tags found
No related merge requests found
...@@ -17,23 +17,6 @@ margin:0; ...@@ -17,23 +17,6 @@ margin:0;
padding:0; padding:0;
} }
/* only used in config_timezones.tmpl */
fieldset.EntryFieldSet {
vertical-align:top;
display:inline;
border-color:#3a3a3a;
margin:5px;
padding:7px;
}
legend {
font:bold 16px Arial;
color: #57442B;
}
div.EntryBlock,div.EntryBlock form {
display:inline;
}
/* --------------------------------------------- */
/* these are for incl_top.tmpl */ /* these are for incl_top.tmpl */
#header { #header {
background-color:#fff; background-color:#fff;
......
#import sickbeard
#from sickbeard.common import *
#import pytz
#from pytz import common_timezones
#set global $title="Config - Timezones"
#set global $header="Timezone 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 to comment