Private GIT
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Sick-Beard
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
vlbox
Sick-Beard
Commits
9c00c65f
Commit
9c00c65f
authored
Oct 3, 2010
by
Chaosloth
Committed by
Nic Wolfe
Oct 14, 2010
Browse files
Options
Downloads
Patches
Plain Diff
Added timezone support for comming episodes
parent
123a1332
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
data/interfaces/default/config_timezones.tmpl
+58
-0
58 additions, 0 deletions
data/interfaces/default/config_timezones.tmpl
with
58 additions
and
0 deletions
data/interfaces/default/config_timezones.tmpl
0 → 100644
+
58
−
0
View file @
9c00c65f
#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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment