-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathboard.html
482 lines (374 loc) · 16.6 KB
/
board.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Live Iterations</title>
<link href="http://fonts.googleapis.com/css?family=Reenie+Beanie:regular" rel="stylesheet" type="text/css">
<link href='http://fonts.googleapis.com/css?family=Lobster&subset=latin' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Ubuntu:regular,italic,bolditalic' rel='stylesheet' type='text/css'>
<link href="resources/css/board.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="resources/css/sexybuttons.css" type="text/css"/>
<link rel="stylesheet" href="resources/css/flex-box.css">
<link rel="stylesheet" href="temp/demo.css" type="text/css" media="all"/>
<link rel="stylesheet" href="resources/css/ui.notify.css" type="text/css" media="all"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.6/jquery-ui.js"></script>
<script src="resources/js/lib/handlebars.js"></script>
<script src="resources/js/lib/jquery.lightbox_me.js"></script>
<script src="resources/js/lib/jquery.notify.js"></script>
<script src="resources/js/dashboard.js"></script>
</head>
<div id="header">
<span id="productName">Live Iterations</span>
<div id="menuBar">
<div id="portfolioView" class="menuItemBorder">
<img src="resources/images/briefcase_32.png" alt="Portfolio View">
<span class="menuLabel">Portfolio</span>
</div>
<div id="projectsMenu"
style="display:inline; padding: 18px 0 0 5px;margin: 0 0 0 5px;-webkit-border-radius: 5px;border: 1px inset #4a2c0e;">
<img src="resources/images/icon-10.png" title="Projects View" class="expandableMenu">
<span class="menuLabel">Project</span>
<div id="projectDetailMenu" class="expandedMenu displayClass">
<select class="projectSelect">
<option>Select Project</option>
<option>Live Iterations</option>
<option>Google Maps</option>
</select>
<div id="epicMenu"
style="display:inline; padding: 18px 0 0 5px;margin: 0 0 0 5px;-webkit-border-radius: 5px;border: 1px inset #4a2c0e;">
<img src="resources/images/Notes-Stacked2.png" class="expandableSubMenu">
<div id="epicDetailMenu" class="expandedSubMenu displayClass">
<img id="newEpic" src="resources/images/plus_16.png" title="Add New Epic"
style="vertical-align:top;left:-1px;position:relative;">
</div>
<span class="menuLabel">Epic</span>
</div>
<div id="storyMenu"
style="display:inline; padding: 18px 0 0 5px;margin: 0 0 0 5px;-webkit-border-radius: 5px;border: 1px inset #4a2c0e;">
<img src="resources/images/Story.png" class="expandableSubMenu">
<div id="storyDetailMenu" class="expandedSubMenu displayClass">
<img id="newStory" src="resources/images/plus_16.png" title="Add New Story"
style="vertical-align:top;left:-1px;position:relative;">
</div>
<span class="menuLabel">Story</span>
</div>
</div>
<!--<input type="button" value="Add New Story">-->
<!-- <button class="sexybutton sexyyellow"><span><span><span class="theme">Portfolio</span></span></span></button>-->
<!--<img src="images/icons/custom/page_text_add_32.png" style="height:37%">-->
</div>
<div id="tags" class="menuItemBorder">
<img src="resources/images/label_32.png" style="height:32%;">
<span class="menuLabel" style="left:-28px;">Tags</span>
</div>
</div>
<input results="20" type='search' class="search" placeholder='Search'/>
</div>
<div id="mainContainer"></div>
<!--Story Board Template-->
<div id="storyBoardContainer" style="display:none;">
<div id="story_{{phase1}}" class="phasepanel">
<span class="phaseHeader">{{phase1}} <span>{{storyCount}}</span></span>
<ul class="movable">
</ul>
</div>
<div id="story_{{phase2}}" class="phasepanel">
<span class="phaseHeader">{{phase2}}</span>
<ul class="movable">
</ul>
</div>
<div id="story_{{phase3}}" class="phasepanel">
<span class="phaseHeader">{{phase3}}</span>
<ul class="movable">
</ul>
</div>
<div id="story_{{phase4}}" class="phasepanel">
<span class="phaseHeader">{{phase4}}</span>
<ul class="movable">
</ul>
</div>
</div>
<!--Epic Story Board Template-->
<div id="epicStoryBoardContainer" style="display:none;">
<div id="story_{{phase1}}" class="phasepanel">
<span class="phaseHeader">{{phase1}}</span>
<ul class="movable">
</ul>
</div>
<div id="story_{{phase2}}" class="phasepanel">
<span class="phaseHeader">{{phase2}}</span>
<ul class="movable">
</ul>
</div>
<div id="story_{{phase3}}" class="phasepanel">
<span class="phaseHeader">{{phase3}}</span>
<ul class="movable">
</ul>
</div>
<div id="story_{{phase4}}" class="phasepanel">
<span class="phaseHeader">{{phase4}}</span>
<ul class="movable">
</ul>
</div>
</div>
<div id="editableStoryDlg" style="display:none;">
<div class="editableNoteHeader">
<span class="closeNote"><img src="resources/images/close_16.png"></span>
{{storyName}}
</div>
<form action="#" method="get">
<fieldset>
<div class="flex-container">
<div class="col-1 col-1-flex">
<div>
<label for="storyName">Story Name</label>
<input type="text" name="storyName" id="storyName" value="{{storyName}}"/>
</div>
<div>
<label for="storyType">Story Type</label>
<select id="storyType">
<option>test</option>
</select>
</div>
<div>
<label for="storyDescription">Story Description</label>
<textarea rows="2" cols="20">{{storyDesc}}</textarea>
</div>
<div>
<label for="storyDescription">Acceptance Test</label>
<textarea rows="2" cols="20">{{acceptanceTest}}</textarea>
</div>
</div>
<div class="col-2 col-2-flex">
<div>
<label for="dueDate">Due Date</label>
<input id="dueDate" type="date"/>
</div>
<div>
<label for="assignedTo">Assigned To</label>
<select id="assignedTo">
<option>test</option>
</select>
</div>
<div>
<label for="estimate">Estimate</label>
<input type="text" name="estimate" id="estimate"/>
</div>
<div>
<label for="pct_complete">% Complete</label>
<input type="text" name="pct_complete" id="pct_complete"/>
</div>
<div>
<label for="storyTags">Tags</label>
<input type="password" name="tags" id="storyTags"/>
</div>
</div>
</div>
</fieldset>
<!-- Controls -->
<div class="formControls">
<button type="reset" class="sexybutton sexysimple sexyblack">Cancel</button>
<button type="reset" class="sexybutton sexysimple sexyyellow">Save Story</button>
</div>
</fieldset>
</form>
</div>
<div id="newStoryDlg" style="display:none;">
<div class="editableNoteHeader">
<span class="closeNote"><img src="resources/images/close_16.png"></span>
New Story
</div>
<form action="#" method="get">
<fieldset>
<div class="flex-container">
<div class="col-1 col-1-flex">
<div>
<label for="storyName">Story Name</label>
<input type="text" name="storyName" id="storyName" value="{{storyName}}"/>
</div>
<div>
<label for="storyType">Story Type</label>
<select id="storyType">
<option>test</option>
</select>
</div>
<div>
<label for="storyDescription">Story Description</label>
<textarea rows="2" cols="20">{{storyDesc}}</textarea>
</div>
<div>
<label for="storyDescription">Acceptance Test</label>
<textarea rows="2" cols="20">{{acceptanceTest}}</textarea>
</div>
</div>
<div class="col-2 col-2-flex">
<div>
<label for="dueDate">Due Date</label>
<input id="dueDate" type="date"/>
</div>
<div>
<label for="assignedTo">Assigned To</label>
<select id="assignedTo">
<option>test</option>
</select>
</div>
<div>
<label for="estimate">Estimate</label>
<input type="text" name="estimate" id="estimate"/>
</div>
<div>
<label for="pct_complete">% Complete</label>
<input type="text" name="pct_complete" id="pct_complete"/>
</div>
<div>
<label for="storyTags">Tags</label>
<input type="password" name="tags" id="storyTags"/>
</div>
</div>
</div>
</fieldset>
<!-- Controls -->
<div class="formControls">
<button type="reset" class="sexybutton sexysimple sexyblack">Cancel</button>
<button type="reset" class="sexybutton sexysimple sexyyellow">Save Story to Back Log</button>
<button type="reset" class="sexybutton sexysimple sexygreen">Save Story & Add to Queue</button>
</div>
</fieldset>
</form>
</div>
<div id="newEpicDlg" style="display:none;">
<div class="editableNoteHeader">
<span class="closeNote"><img src="resources/images/close_16.png"></span>
New Epic Story
</div>
<form action="#" method="get">
<fieldset>
<div class="flex-container">
<div class="col-1 col-1-flex">
<div>
<label for="epicStoryName">Epic Story Name</label>
<input type="text" name="epicStoryName" id="epicStoryName" value="{{epicStoryName}}"/>
</div>
<div>
<label for="storyType">Story Type</label>
<select id="storyType">
<option>test</option>
</select>
</div>
<div>
<label for="storyDescription">Epic Story Description</label>
<textarea rows="2" cols="20">{{storyDesc}}</textarea>
</div>
<div>
<label for="storyDescription">Acceptance Test</label>
<textarea rows="2" cols="20">{{acceptanceTest}}</textarea>
</div>
</div>
<div class="col-2 col-2-flex">
<div>
<label for="dueDate">Due Date</label>
<input id="dueDate" type="date"/>
</div>
<div>
<label for="assignedTo">Assigned To</label>
<select id="assignedTo">
<option>test</option>
</select>
</div>
<div>
<label for="estimate">Estimate</label>
<input type="text" name="estimate" id="estimate"/>
</div>
<div>
<label for="pct_complete">% Complete</label>
<input type="text" name="pct_complete" id="pct_complete"/>
</div>
<div>
<label for="storyTags">Tags</label>
<input type="password" name="tags" id="storyTags"/>
</div>
</div>
</div>
</fieldset>
<!-- Controls -->
<div class="formControls">
<button type="reset" class="sexybutton sexysimple sexyblack">Cancel</button>
<button type="reset" class="sexybutton sexysimple sexyyellow">Save Epic to Back Log</button>
<button type="reset" class="sexybutton sexysimple sexygreen">Save Epic & Add to Queue</button>
</div>
</fieldset>
</form>
</div>
<!--Story Template-->
<div id="storyTemplate" style="display:none;">
<li>
<div class="workItem" id="card1">
<img src="resources/images/pencil_16.png" class="editNote">
<h2 style="display:inline;left:-25px;position:relative;">{{storyName}}</h2>
<p>{{storyDesc}}</p>
<div class="workItemFooter">
<div class="assigned">{{assigned}}</div>
<div class="comments">Comments</div>
<div><input type="checkbox" style="margin-right:2px;display:inline;">Done</div>
</div>
<span></span>
</div>
</li>
</div>
<!--Story Template-->
<div id="epicStoryTemplate" style="display:none;">
<li>
<div style="height:205px" class="epicStoryContainer">
<div class="epicStory">
<img src="resources/images/pencil_16.png" class="editNote">
<h2 style="display:inline;left:-25px;position:relative;">{{storyName}}</h2>
<p>{{storyDesc}}</p>
<div class="workItemFooter">
<div class="assigned">{{assigned}}</div>
<div class="comments">Comments</div>
<div><input type="checkbox" style="margin-right:2px;display:inline;"/>Done</div>
</div>
</div>
<div class="storyCount">{{storyCount}}</div>
<div class="epicStack1"></div>
<div class="epicStack2"></div>
</div>
</li>
</div>
<div id="lightBoxContent" class="editableNote"></div>
<!--- container to hold notifications, and default templates --->
<div id="container" style="display:none; top:auto; bottom:0; margin:0 0 10px 10px; z-index:100;">
<div id="default">
<h1>#{title}</h1>
<p class="growlMessage">#{text}</p>
</div>
<div id="sticky">
<a class="ui-notify-close ui-notify-cross" href="#">x</a>
<h1>#{title}</h1>
<p class="growlMessage">#{text}</p>
</div>
<div id="themeroller" class="ui-state-error"
style="padding:10px; -moz-box-shadow:0 0 6px #980000; -webkit-box-shadow:0 0 6px #980000; box-shadow:0 0 6px #980000;">
<a class="ui-notify-close" href="#"><span class="ui-icon ui-icon-close" style="float:right"></span></a>
<span style="float:left; margin:0 5px 0 0;" class="ui-icon ui-icon-alert"></span>
<h1>#{title}</h1>
<p>#{text}</p>
<p style="text-align:center"><a class="ui-notify-close" href="#">Close Me</a></p>
</div>
<div id="withIcon">
<a class="ui-notify-close ui-notify-cross" href="#">x</a>
<div style="float:left;margin:0 10px 0 0"><img src="#{icon}" alt="warning"/></div>
<h1>#{title}</h1>
<p class="growlMessage">#{text}</p>
</div>
<div id="buttons">
<h1>#{title}</h1>
<p>#{text}</p>
<p style="margin-top:10px;text-align:center">
<input type="button" class="confirm" value="Close Dialog"/>
</p>
</div>
</div>
</body>
</html>