summaryrefslogtreecommitdiff
path: root/httemplate/elements/select-time-from_to.html
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2014-04-05 16:46:29 -0700
committerIvan Kohler <ivan@freeside.biz>2014-04-05 16:46:29 -0700
commitac127e9cc71ed1cfebb159095dd59b3507e54e98 (patch)
treec1e741cfbe7a64567202b48e7b4a6725a67f6896 /httemplate/elements/select-time-from_to.html
parenta57c537ff9ef2a57de3225fbd49772be4b81e74c (diff)
installers, RT#16584
Diffstat (limited to 'httemplate/elements/select-time-from_to.html')
-rw-r--r--httemplate/elements/select-time-from_to.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/httemplate/elements/select-time-from_to.html b/httemplate/elements/select-time-from_to.html
new file mode 100644
index 000000000..9d49b7ab8
--- /dev/null
+++ b/httemplate/elements/select-time-from_to.html
@@ -0,0 +1,17 @@
+<& select-time.html,
+ %opt,
+ 'field' => $opt{'prefix'}. 'stime',
+ 'selected_default' => 480, #8am... configure?
+ 'curr_value' => $cgi->param($opt{'prefix'}.'stime'),
+&>
+ -
+<& select-time.html,
+ %opt,
+ 'field' => $opt{'prefix'}. 'etime',
+ 'selected_default' => 1080, #6pm.. configure?
+ 'curr_value' => $cgi->param($opt{'prefix'}.'etime'),
+&>
+<%init>
+ my %opt = @_;
+
+</%init>