Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
9dd2ad85
Commit
9dd2ad85
authored
Nov 02, 2010
by
Guy Pyrzak
Committed by
Frédéric Buclin
Nov 02, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 608375: The calendar widget is not available in the Time Summary page
r=wicked a=mkanat
parent
9392b166
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
3 deletions
+19
-3
summarize-time.html.tmpl
template/en/default/bug/summarize-time.html.tmpl
+19
-3
No files found.
template/en/default/bug/summarize-time.html.tmpl
View file @
9dd2ad85
...
...
@@ -32,6 +32,8 @@
header = header
style_urls = ["skins/standard/summarize-time.css"]
doc_section = "timetracking.html"
yui = ['calendar']
javascript_urls = [ "js/util.js", "js/field.js" ]
%]
[% INCLUDE query_form %]
...
...
@@ -281,11 +283,23 @@
for="start_date">Period <u>s</u>tarting</label></b>:
</td><td colspan="3">
<input type="text" id="start_date" name="start_date" size="11"
align="right" value="[% start_date FILTER html %]" maxlength="10">
align="right" value="[% start_date FILTER html %]" maxlength="10"
onchange="updateCalendarFromField(this)">
<button type="button" class="calendar_button"
id="button_calendar_start_date"
onclick="showCalendar('start_date')"><span>Calendar</span>
</button>
<div id="con_calendar_start_date"></div>
<b>and <label accesskey="e" for="end_date"><u>e</u>nding</label></b>:
<input type="text" name="end_date" size="11" id="end_date"
align="right" value ="[% end_date FILTER html %]" maxlength="10">
align="right" value ="[% end_date FILTER html %]" maxlength="10"
onchange="updateCalendarFromField(this)">
<button type="button" class="calendar_button"
id="button_calendar_end_date"
onclick="showCalendar('end_date')"><span>Calendar</span>
</button>
<div id="con_calendar_end_date"></div>
</td><td align="right">
<input type="submit" id="summarize" value="Summarize">
</td></tr>
...
...
@@ -329,7 +343,9 @@
</form>
<script type="text/javascript">
<!--
document.forms['summary'].start_date.focus()
createCalendar('start_date');
createCalendar('end_date');
document.forms['summary'].start_date.focus();
//--></script>
<hr noshade size=1>
[% END %]
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment