-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
676 lines (666 loc) · 47 KB
/
index.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
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
<!--
Analyze Calendar Exceptions
DONE -- Activity WBS Changes
WBS Changes
DONE -- Activity in progress but rem duration zero
DONE -- Activity in progress but activity % complete is 0
Duplicate Relationships
Redundant Logic
Lags/Leads
DONE -- Budgeted Cost != At Completion Cost
DONE -- Earned Value != Actual Cost
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title id="title">XER Analyzer</title>
<link rel="stylesheet" type="text/css" href="./static/css/style.css">
</head>
<body>
<aside id="menu" class="menu hidden">
<div class="card border-rad-8px box-shadow">
<header><h1 class="">XER Analyzer</h1></header>
<ul>
<li><div id="dashboard-btn" onclick="menuClickHandle(event, 'general')" class="btn show-data">Dashboard</div></li>
<li class="hidden base"><div class="btn exp collapsible">Progress Changes<span id="ud" class="float-right"></span></div>
<div style="display: none;">
<ul>
<li><div id="ud-started-btn" class="sub btn inactive-btn">Started:<span id="ud-started" class="float-right"></span></div></li>
<li><div id="ud-finished-btn" class="sub btn inactive-btn">Finished:<span id="ud-finished" class="float-right"></span></div></li>
<li><div id="ud-startFinish-btn" class="sub btn inactive-btn">Started & Finished:<span id="ud-startFinish" class="float-right"></span></div></li>
<li><div id="ud-percent-btn" class="sub btn inactive-btn">Percent Complete:<span id="ud-percent" class="float-right"></span></div></li>
<li><div id="ud-duration-btn" class="sub btn inactive-btn">Remaining Duration:<span id="ud-duration" class="float-right"></span></div></li>
<li><div id="ud-cost-btn" class="sub btn inactive-btn">Actual Cost:<span id="ud-cost" class="float-right"></span></div></li>
<li><div id="ud-regress-btn" class="sub btn inactive-btn">Regressive:<span id="ud-regress" class="float-right"></span></div></li>
</ul>
</div>
</li>
<li class="hidden base"><div class="btn exp collapsible">Activity Revisions<span id="tk" class="float-right"></span></div>
<div style="display: none;">
<ul>
<li><div id="tk-added-btn" class="sub btn inactive-btn">Added:<span id="tk-added" class="float-right"></span></div></li>
<li><div id="tk-deleted-btn" class="sub btn inactive-btn">Deleted:<span id="tk-deleted" class="float-right"></span></div></li>
<li><div id="tk-name-btn" class="sub btn inactive-btn">Names:<span id="tk-name" class="float-right"></span></div></li>
<li><div id="tk-duration-btn" class="sub btn inactive-btn">Orig Durations:<span id="tk-duration" class="float-right"></span></div></li>
<li><div id="tk-calendar-btn" class="sub btn inactive-btn">Calendars:<span id="tk-calendar" class="float-right"></span></div></li>
<li><div id="tk-start-btn" class="sub btn inactive-btn">Actual Starts:<span id="tk-start" class="float-right"></span></div></li>
<li><div id="tk-finish-btn" class="sub btn inactive-btn">Actual Finishes:<span id="tk-finish" class="float-right"></span></div></li>
<li><div id="tk-wbs-btn" class="sub btn inactive-btn">WBS Asignment:<span id="tk-wbs" class="float-right"></span></div></li>
</ul>
</div>
</li>
<li class="hidden base"><div class="btn exp collapsible">Relationship Revisions<span id="rl" class="float-right"></span></div>
<div style="display: none;">
<ul>
<li><div id="rl-added-btn" class="sub btn inactive-btn">Added:<span id="rl-added" class="float-right"></span></div></li>
<li><div id="rl-deleted-btn" class="sub btn inactive-btn">Deleted:<span id="rl-deleted" class="float-right"></span></div></li>
<li><div id="rl-revised-btn" class="sub btn inactive-btn">Revised:<span id="rl-revised" class="float-right"></span></div></li>
</ul>
</div>
</li>
<li class="hidden base"><div class="btn exp collapsible">Resource Revisions<span id="rs" class="float-right"></span></div>
<div style="display: none;">
<ul>
<li><div id="rs-added-btn" class="sub btn inactive-btn">Added:<span id="rs-added" class="float-right"></span></div></li>
<li><div id="rs-deleted-btn" class="sub btn inactive-btn">Deleted:<span id="rs-deleted" class="float-right"></span></div></li>
<li><div id="rs-cost-btn" class="sub btn inactive-btn">Revised Cost:<span id="rs-cost" class="float-right"></span></div></li>
<li><div id="rs-units-btn" class="sub btn inactive-btn">Revised Units:<span id="rs-units" class="float-right"></span></div></li>
</ul>
</div>
</li>
<li class="hidden base"><div class="btn exp collapsible">Constraint Revisions<span id="cs" class="float-right"></span></div>
<div style="display: none;">
<ul>
<li><div id="cs-added-prim-btn" class="sub btn inactive-btn">Added Primary:<span id="cs-added-prim" class="float-right"></span></div></li>
<li><div id="cs-deleted-prim-btn" class="sub btn inactive-btn">Deleted Primary:<span id="cs-deleted-prim" class="float-right"></span></div></li>
<li><div id="cs-revised-prim-btn" class="sub btn inactive-btn">Revised Primary:<span id="cs-revised-prim" class="float-right"></span></div></li>
<li><div id="cs-added-sec-btn" class="sub btn inactive-btn">Added Secondary:<span id="cs-added-sec" class="float-right"></span></div></li>
<li><div id="cs-deleted-sec-btn" class="sub btn inactive-btn">Deleted Seconday:<span id="cs-deleted-sec" class="float-right"></span></div></li>
<li><div id="cs-revised-sec-btn" class="sub btn inactive-btn">Revised Secondary:<span id="cs-revised-sec" class="float-right"></span></div></li>
</ul>
</div>
</li>
<li><div class="btn exp collapsible">Relationship Warnings<span id="open" class="float-right"></span></div>
<div style="display: none;">
<ul>
<li><div id="open-pred-btn" class="sub btn inactive-btn">Open Predecessors:<span id="open-pred" class="float-right"></span></div></li>
<li><div id="open-succ-btn" class="sub btn inactive-btn">Open Successors:<span id="open-succ" class="float-right"></span></div></li>
<li><div id="open-start-btn" class="sub btn inactive-btn">Open Starts:<span id="open-start" class="float-right"></span></div></li>
<li><div id="open-finish-btn" class="sub btn inactive-btn">Open Finishes:<span id="open-finish" class="float-right"></span></div></li>
<li><div id="open-duplicate-btn" class="sub btn inactive-btn">Duplicate Relationships:<span id="open-duplicate" class="float-right"></span></div></li>
</ul>
</div>
</li>
<li><div class="btn exp collapsible">Date Warnings<span id="inv" class="float-right"></span></div>
<div style="display: none;">
<ul>
<li><div id="inv-start-btn" class="sub btn inactive-btn">Actual Start >= Data Date:<span id="inv-start" class="float-right"></span></div></li>
<li><div id="inv-finish-btn" class="sub btn inactive-btn">Actual Finish >= Data Date:<span id="inv-finish" class="float-right"></span></div></li>
<li><div id="inv-startDD-btn" class="sub btn inactive-btn">Start Riding Data Date:<span id="inv-startDD" class="float-right"></span></div></li>
<li><div id="inv-finishDD-btn" class="sub btn inactive-btn">Finish Riding Data Date:<span id="inv-finishDD" class="float-right"></span></div></li>
<li><div id="inv-expected-btn" class="sub btn inactive-btn">Expected Finish:<span id="inv-expected" class="float-right"></span></div></li>
<li><div id="inv-suspend-btn" class="sub btn inactive-btn">Suspend / Resume:<span id="inv-suspend" class="float-right"></span></div></li>
</ul>
</div>
</li>
<li><div class="btn exp collapsible">Duration Warnings<span id="dur" class="float-right"></span></div>
<div style="display: none;">
<ul>
<li><div id="dur-long-btn" class="sub btn inactive-btn">Orig Dur > 20:<span id="dur-long" class="float-right"></span></div></li>
<li><div id="dur-zero-btn" class="sub btn inactive-btn">Orig Dur = 0:<span id="dur-zero" class="float-right"></span></div></li>
<li><div id="dur-short-btn" class="sub btn inactive-btn">Orig Dur = 1:<span id="dur-short" class="float-right"></span></div></li>
<li><div id="dur-rdzero-btn" class="sub btn inactive-btn">Rem Dur = 0:<span id="dur-rdzero" class="float-right"></span></div></li>
<li><div id="dur-odrd-btn" class="sub btn inactive-btn">Rem Dur != Orig Dur:<span id="dur-odrd" class="float-right"></span></div></li>
</ul>
</div>
</li>
<li><div class="btn exp collapsible">Cost Warnings<span id="cost" class="float-right"></span></div>
<div style="display: none;">
<ul>
<li><div id="cost-budget-btn" class="sub btn inactive-btn">Cost Variance:<span id="cost-budget" class="float-right"></span></div></li>
<li><div id="cost-ev-btn" class="sub btn inactive-btn">Earned Value Variance:<span id="cost-ev" class="float-right"></span></div></li>
<li><div id="cost-regress-btn" class="sub btn inactive-btn">Regressive Billing:<span id="cost-regress" class="float-right"></span></div></li>
</ul>
</div>
</li>
<li><div id="critical-btn" class="btn">Critical Path</div></li>
</ul>
</div>
</aside>
<div id="content">
<section id="upload" class="cat max-width-960">
<div>
<h2 class="width-100">Select XER Files</h2>
<div class="card border-rad-8px box-shadow min-wid-330 margin-top-20px">
<div class="">
<label for="current-file-selector" class="block">Current XER</label>
</div>
<div class="pad-10px">
<input type="file" name="current" id="current-file-selector" accept=".xer" class="xer margin-top-5px" required>
<select name="current" id="current-project-selector" class="block width-100 margin-top-10px hidden">
</select>
</div>
</div>
<!-- <label for="compare-checkbox"> -->
<input type="checkbox" id="compare-checkbox" name="accept" value="no" class="margin-top-20px margin-hor"> Include Comparison to Basline / Previous Update
<!-- </label> -->
<div class="card border-rad-8px box-shadow min-wid-330 margin-top-20px hidden base">
<div class="">
<label for="previous-file-selector" class="block">Previous XER</label>
</div>
<div class="pad-10px">
<input type="file" name="previous" id="previous-file-selector" accept=".xer" class="xer margin-top-5px" required>
<select name="previous" id="previous-project-selector" class="block width-100 margin-top-10px hidden">
</select>
</div>
</div>
<div class="width-100 margin-top-20px margin-hor">
<button id="analyze-btn" disabled=true>Analyze</button>
</div>
</div>
<script>
</script>
</section>
<section id="general" class="cat hidden">
<div class="flex">
<h2 class="hidden width-100 text-center">General Project Information</h2>
<div class="card border-rad-8px box-shadow width-100">
<div class="">
<h3 class="pad-bm-05em">Current Project</h3>
</div>
<div class="pad-10px">
<table>
<tr>
<td class="no-wrap">Project ID:</td>
<td id="current-project-id"></td>
</tr>
<tr>
<td class="no-wrap">Project Name:</td>
<td class="width-max" id="current-project-name"></td>
</tr>
<tr>
<td class="no-wrap">P6 Version:</td>
<td class="width-max" id="current-project-version"></td>
</tr>
<tr>
<td class="no-wrap">XER Created On:</td>
<td class="width-max" id="current-project-created"></td>
</tr>
<tr>
<td class="no-wrap">XER Created By:</td>
<td class="width-max" id="current-project-user"></td>
</tr>
</table>
</div>
</div>
<div class="card border-rad-8px box-shadow width-100 hidden base">
<div class="">
<h3 class="pad-bm-05em">Previous Project</h3>
</div>
<div class="pad-10px">
<table>
<tr>
<td class="no-wrap">Project ID:</td>
<td id="previous-project-id"></td>
</tr>
<tr>
<td class="no-wrap">Project Name:</td>
<td class="width-max" id="previous-project-name"></td>
</tr>
<tr>
<td class="no-wrap">P6 Version:</td>
<td class="width-max" id="previous-project-version"></td>
</tr>
<tr>
<td class="no-wrap">XER Created On:</td>
<td class="width-max" id="previous-project-created"></td>
</tr>
<tr>
<td class="no-wrap">XER Created By:</td>
<td class="width-max" id="previous-project-user"></td>
</tr>
</table>
</div>
</div>
<div class="flex">
<div class="card border-rad-8px box-shadow stretch3">
<div class="">
<h3 class="pad-bm-05em txt-center">Project Dates</h3>
</div>
<div class="pad-10px">
<div class="flex">
<div class="stretch">
<table>
<tr>
<th class="text-left">Date</th>
<th class="width-8em">Current</th>
<th class="width-8em hidden base">Previous</th>
<th class="text-right hidden base">Diff</th>
</tr>
<tr>
<td class="no-wrap">Start Date:</td>
<td id="current-start" class="text-center no-wrap"></td>
<td id="previous-start" class="text-center no-wrap hidden base"></td>
<td id="start-var" class="text-right no-wrap hidden base"></td>
</tr>
<tr>
<td class="no-wrap">Data Date:</td>
<td id="current-data-date" class="text-center no-wrap"></td>
<td id="previous-data-date" class="text-center no-wrap hidden base"></td>
<td id="dd-var" class="text-right no-wrap hidden base"></td>
</tr>
<tr>
<td class="no-wrap">End Date:</td>
<td id="current-end" class="text-center no-wrap"></td>
<td id="previous-end" class="text-center no-wrap hidden base"></td>
<td id="end-var" class="text-right no-wrap hidden base"></td>
</tr>
<tr>
<td class="no-wrap">Must Finish:</td>
<td id="current-mfb" class="text-center no-wrap"></td>
<td id="previous-mfb" class="text-center no-wrap hidden base"></td>
<td id="mfb-var" class="text-right no-wrap hidden base"></td>
</tr>
</table>
</div>
</div>
</div>
</div>
<div class="card border-rad-8px box-shadow stretch">
<div class="">
<h3 class="pad-bm-05em txt-center">Calendars</h3>
</div>
<div class="pad-10px">
<div class="flex">
<div class="stretch">
<table id="calendar-tbl">
<tr>
<th class="text-left">Calendar</th>
<th class="text-center">Sun</th>
<th class="text-center">Mon</th>
<th class="text-center">Tue</th>
<th class="text-center">Wed</th>
<th class="text-center">Thu</th>
<th class="text-center">Fri</th>
<th class="text-center">Sat</th>
<th class="text-center">Activities</th>
<th class="text-center">Exceptions</th>
</tr>
</table>
</div>
</div>
</div>
</div>
<div class="card width-100 border-rad-8px box-shadow">
<div class="">
<h3 class="pad-bm-05em">Progress</h3>
</div>
<div class="pad-10px">
<table>
<tr>
<th class="text-left">Progress:</th>
<th class="text-right width-8em">Current</th>
<th class="text-right width-8em hidden base">Previous</th>
<th class="text-right width-8em hidden base">Diff</th>
<th class="no-wrap"></th>
</tr>
<tr>
<td class="no-wrap">Schedule:</td>
<td id="current-schedule-per" class="text-right no-wrap"></td>
<td id="previous-schedule-per" class="text-right no-wrap hidden base"></td>
<td id="schedule-per-var" class="text-right no-wrap hidden base"></td>
<td class="outer-progress"><div id="sched-progress" class="inner-progress"></div></td>
</tr>
<!-- <tr>
<td class="no-wrap">Contract Duration:</td>
<td id="current-contract-per" class="text-right no-wrap"></td>
<td id="previous-contract-per" class="text-right no-wrap"></td>
<td id="contract-per-var" class="text-right no-wrap"></td>
</tr> -->
<tr>
<td class="no-wrap">Physical:</td>
<td id="current-physical-per" class="text-right no-wrap"></td>
<td id="previous-physical-per" class="text-right no-wrap hidden base"></td>
<td id="physical-per-var" class="text-right no-wrap hidden base"></td>
<td class="outer-progress"><div id="phys-progress" class="inner-progress"></div></td>
</tr>
<tr>
<td class="no-wrap">Cost:</td>
<td id="current-cost-per" class="text-right no-wrap"></td>
<td id="previous-cost-per" class="text-right no-wrap hidden base"></td>
<td id="cost-per-var" class="text-right no-wrap hidden base"></td>
<td class="outer-progress"><div id="cost-progress" class="inner-progress"></div></td>
</tr>
</table>
</div>
<div style="position: relative; height:45vh; width:calc(100vw - 380px)" class="pad-10px">
<canvas id="activityProgressChart"></canvas>
</div>
</div>
<div class="card border-rad-8px box-shadow">
<div class="">
<h3 class="pad-bm-05em">Activity / Relationship Stats</h3>
</div>
<div class="pad-10px flex">
<div class="flex">
<div class="stretch tbl-border min-wid-460">
<table>
<tr>
<th class="text-left col-6-5em">Activity Status</th>
<th class="text-right col-5em">Count</th>
<th class="text-right col-3em">%</th>
<th class="text-right col-5em hidden base">Prev</th>
<th class="text-right col-3em hidden base">Diff</th>
<td class="chart no-wrap" rowspan="7"><canvas id="activityStatusChart"></canvas></td>
</tr>
<tr>
<td class="no-wrap chart-red">Not Started:</td>
<td id="current-not-started" class="text-right no-wrap"></td>
<td id="current-not-started-per" class="text-right no-wrap"></td>
<td id="previous-not-started" class="text-right no-wrap hidden base"></td>
<td id="not-started-var" class="text-right no-wrap hidden base"></td>
</tr>
<tr>
<td class="no-wrap chart-green">In Progress:</td>
<td id="current-in-progress" class="text-right no-wrap"></td>
<td id="current-in-progress-per" class="text-right no-wrap"></td>
<td id="previous-in-progress" class="text-right no-wrap hidden base"></td>
<td id="in-progress-var" class="text-right no-wrap hidden base"></td>
</tr>
<tr>
<td class="no-wrap chart-blue">Completed:</td>
<td id="current-complete" class="text-right no-wrap"></td>
<td id="current-complete-per" class="text-right no-wrap"></td>
<td id="previous-complete" class="text-right no-wrap hidden base"></td>
<td id="complete-var" class="text-right no-wrap hidden base"></td>
</tr>
<tr>
<td class="no-wrap border-top">Total:</td>
<td id="current-tasks" class="text-right no-wrap border-top"></td>
<td class="text-right no-wrap border-top"></td>
<td id="previous-tasks" class="text-right no-wrap border-top hidden base"></td>
<td id="tasks-var" class="text-right no-wrap border-top hidden base"></td>
</tr>
<tr><td></td></tr>
<tr><td></td></tr>
</table>
</div>
<div class="stretch tbl-border min-wid-460">
<table>
<tr>
<th class="text-left col-6-5em">Activity Type</th>
<th class="text-right col-5em">Count</th>
<th class="text-right col-3em">%</th>
<th class="text-right col-5em hidden base">Prev</th>
<th class="text-right col-3em hidden base">Diff</th>
<td class="chart no-wrap" rowspan="7"><canvas id="activityTypeChart"></canvas></td>
</tr>
<tr>
<td class="no-wrap chart-red">Task:</td>
<td id="current-task-dependent" class="text-right no-wrap"></td>
<td id="current-task-dependent-per" class="text-right no-wrap"></td>
<td id="previous-task-dependent" class="text-right no-wrap hidden base"></td>
<td id="task-dependent-var" class="text-right no-wrap hidden base"></td>
</tr>
<tr>
<td class="no-wrap chart-green">Milestone:</td>
<td id="current-milestones" class="text-right no-wrap"></td>
<td id="current-milestones-per" class="text-right no-wrap"></td>
<td id="previous-milestones" class="text-right no-wrap hidden base"></td>
<td id="milestones-var" class="text-right no-wrap hidden base"></td>
</tr>
<tr>
<td class="no-wrap chart-blue">Level of Effort:</td>
<td id="current-loe" class="text-right no-wrap"></td>
<td id="current-loe-per" class="text-right no-wrap"></td>
<td id="previous-loe" class="text-right no-wrap hidden base"></td>
<td id="loe-var" class="text-right no-wrap hidden base"></td>
</tr>
<tr>
<td class="no-wrap chart-yellow">Resource:</td>
<td id="current-rsrc-dependent" class="text-right no-wrap"></td>
<td id="current-rsrc-dependent-per" class="text-right no-wrap"></td>
<td id="previous-rsrc-dependent" class="text-right no-wrap hidden base"></td>
<td id="rsrc-dependent-var" class="text-right no-wrap hidden base"></td>
</tr>
<tr><td></td></tr>
<tr><td></td></tr>
</table>
</div>
<div class="stretch tbl-border min-wid-460">
<table>
<tr>
<th class="text-left col-6-5em">Activity Float</th>
<th class="text-right col-5em">Count</th>
<th class="text-right col-3em">%</th>
<th class="text-right col-5em hidden base">Prev</th>
<th class="text-right col-3em hidden base">Diff</th>
<td class="chart no-wrap" rowspan="7"><canvas id="activityFloatChart"></canvas></td>
</tr>
<tr>
<td class="no-wrap chart-red">Critical:</td>
<td id="current-critical" class="text-right no-wrap"></td>
<td id="current-critical-per" class="text-right no-wrap"></td>
<td id="previous-critical" class="text-right no-wrap hidden base"></td>
<td id="critical-var" class="text-right no-wrap hidden base"></td>
</tr>
<tr>
<td class="no-wrap chart-yellow">Near Critical:</td>
<td id="current-near-critical" class="text-right no-wrap"></td>
<td id="current-near-critical-per" class="text-right no-wrap"></td>
<td id="previous-near-critical" class="text-right no-wrap hidden base"></td>
<td id="near-critical-var" class="text-right no-wrap hidden base"></td>
</tr>
<tr>
<td class="no-wrap chart-green">Normal Float:</td>
<td id="current-normal-tf" class="text-right no-wrap"></td>
<td id="current-normal-tf-per" class="text-right no-wrap"></td>
<td id="previous-normal-tf" class="text-right no-wrap hidden base"></td>
<td id="normal-tf-var" class="text-right no-wrap hidden base"></td>
</tr>
<tr>
<td class="no-wrap chart-blue">High Float:</td>
<td id="current-high-tf" class="text-right no-wrap"></td>
<td id="current-high-tf-per" class="text-right no-wrap"></td>
<td id="previous-high-tf" class="text-right no-wrap hidden base"></td>
<td id="high-tf-var" class="text-right no-wrap hidden base"></td>
</tr>
<tr>
<td class="no-wrap">Longest Path:</td>
<td id="current-longest-path" class="text-right no-wrap"></td>
<td id="current-longest-path-per" class="text-right no-wrap"></td>
<td id="previous-longest-path" class="text-right no-wrap hidden base"></td>
<td id="longest-path-var" class="text-right no-wrap hidden base"></td>
</tr>
<tr><td></td></tr>
</table>
</div>
<div class="stretch tbl-border min-wid-460">
<table>
<tr>
<th class="text-left col-6-5em">Relationships</th>
<th class="text-right col-5em">Count</th>
<th class="text-right col-3em">%</th>
<th class="text-right col-5em hidden base">Prev</th>
<th class="text-right col-3em hidden base">Diff</th>
<td class="chart" rowspan="7"><canvas id="relationshipChart"></canvas></td>
</tr>
<tr>
<td class="no-wrap chart-green">Finish-Start:</td>
<td id="current-fs" class="text-right no-wrap"></td>
<td id="current-fs-per" class="text-right no-wrap"></td>
<td id="previous-fs" class="text-right no-wrap hidden base"></td>
<td id="fs-var" class="text-right no-wrap hidden base"></td>
</tr>
<tr>
<td class="no-wrap chart-blue">Start-Start:</td>
<td id="current-ss" class="text-right no-wrap"></td>
<td id="current-ss-per" class="text-right no-wrap"></td>
<td id="previous-ss" class="text-right no-wrap hidden base"></td>
<td id="ss-var" class="text-right no-wrap hidden base"></td>
</tr>
<tr>
<td class="no-wrap chart-yellow">Finish-Finish:</td>
<td id="current-ff" class="text-right no-wrap"></td>
<td id="current-ff-per" class="text-right no-wrap"></td>
<td id="previous-ff" class="text-right no-wrap hidden base"></td>
<td id="ff-var" class="text-right no-wrap hidden base"></td>
</tr>
<tr>
<td class="no-wrap chart-red">Start-Finish:</td>
<td id="current-sf" class="text-right no-wrap"></td>
<td id="current-sf-per" class="text-right no-wrap"></td>
<td id="previous-sf" class="text-right no-wrap hidden base"></td>
<td id="sf-var" class="text-right no-wrap hidden base"></td>
</tr>
<tr>
<td class="no-wrap border-top">Total:</td>
<td id="current-rels" class="text-right no-wrap border-top"></td>
<td class="text-right no-wrap border-top"></td>
<td id="previous-rels" class="text-right no-wrap border-top hidden base"></td>
<td id="rels-var" class="text-right no-wrap border-top hidden base"></td>
</tr>
<tr><td></td></tr>
</table>
</div>
</div>
</div>
</div>
<div class="card stretch border-rad-8px box-shadow width-100">
<div class="">
<h3 class="pad-bm-05em">Cost / Resource Loading</h3>
</div>
<div class="pad-10px flex">
<div class="flex">
<div class="stretch tbl-border">
<table>
<tr>
<th class="text-left">Cost</th>
<th class="text-right width-10em">Current</th>
<th class="text-right width-10em hidden base">Previous</th>
<th class="text-right width-10em hidden base">Diff</th>
</tr>
<tr>
<td class="no-wrap">Budget:</td>
<td id="current-budget" class="text-right no-wrap"></td>
<td id="previous-budget" class="text-right no-wrap hidden base"></td>
<td id="budget-var" class="text-right no-wrap hidden base"></td>
</tr>
<tr>
<td class="no-wrap">To Date:</td>
<td id="current-actual-cost" class="text-right no-wrap"></td>
<td id="previous-actual-cost" class="text-right no-wrap hidden base"></td>
<td id="actual-cost-var" class="text-right no-wrap hidden base"></td>
</tr>
<tr>
<td class="no-wrap">This Period:</td>
<td id="current-this-period" class="text-right no-wrap"></td>
<td id="previous-this-period" class="text-right no-wrap hidden base"></td>
<td id="this-period-var" class="text-right no-wrap hidden base"></td>
</tr>
<tr>
<td class="no-wrap">Remaining:</td>
<td id="current-remaining-cost" class="text-right no-wrap"></td>
<td id="previous-remaining-cost" class="text-right no-wrap hidden base"></td>
<td id="remaining-cost-var" class="text-right no-wrap hidden base"></td>
</tr>
</table>
</div>
<div class="stretch tbl-border">
<table>
<tr>
<th class="text-left">Units</th>
<th class="text-right width-10em">Current</th>
<th class="text-right width-10em hidden base">Previous</th>
<th class="text-right width-10em hidden base">Diff</th>
</tr>
<tr>
<td class="no-wrap">Budget:</td>
<td id="current-qty" class="text-right no-wrap"></td>
<td id="previous-qty" class="text-right no-wrap hidden base"></td>
<td id="qty-var" class="text-right no-wrap hidden base"></td>
</tr>
<tr>
<td class="no-wrap">To Date:</td>
<td id="current-actual-qty" class="text-right no-wrap"></td>
<td id="previous-actual-qty" class="text-right no-wrap hidden base"></td>
<td id="actual-qty-var" class="text-right no-wrap hidden base"></td>
</tr>
<tr>
<td class="no-wrap">This Period:</td>
<td id="current-this-period-qty" class="text-right no-wrap"></td>
<td id="previous-this-period-qty" class="text-right no-wrap hidden base"></td>
<td id="this-period-qty-var" class="text-right no-wrap hidden base"></td>
</tr>
<tr>
<td class="no-wrap">Remaining:</td>
<td id="current-remaining-qty" class="text-right no-wrap"></td>
<td id="previous-remaining-qty" class="text-right no-wrap hidden base"></td>
<td id="remaining-qty-var" class="text-right no-wrap hidden base"></td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="ud-started-sec" class="hidden cat"></section>
<section id="ud-finished-sec" class="hidden cat"></section>
<section id="ud-startFinish-sec" class="hidden cat"></section>
<section id="ud-percent-sec" class="hidden cat"></section>
<section id="ud-duration-sec" class="hidden cat"></section>
<section id="ud-cost-sec" class="hidden cat"></section>
<section id="ud-regress-sec" class="hidden cat"></section>
<section id="tk-added-sec" class="hidden cat"></section>
<section id="tk-deleted-sec" class="hidden cat"></section>
<section id="tk-name-sec" class="hidden cat"></section>
<section id="tk-duration-sec" class="hidden cat"></section>
<section id="tk-calendar-sec" class="hidden cat"></section>
<section id="tk-start-sec" class="hidden cat"></section>
<section id="tk-finish-sec" class="hidden cat"></section>
<section id="tk-wbs-sec" class="hidden cat"></section>
<section id="rl-added-sec" class="hidden cat"></section>
<section id="rl-deleted-sec" class="hidden cat"></section>
<section id="rl-revised-sec" class="hidden cat"></section>
<section id="rs-added-sec" class="hidden cat"></section>
<section id="rs-deleted-sec" class="hidden cat"></section>
<section id="rs-cost-sec" class="hidden cat"></section>
<section id="rs-units-sec" class="hidden cat"></section>
<section id="cs-added-prim-sec" class="hidden cat"></section>
<section id="cs-deleted-prim-sec" class="hidden cat"></section>
<section id="cs-revised-prim-sec" class="hidden cat"></section>
<section id="cs-added-sec-sec" class="hidden cat"></section>
<section id="cs-deleted-sec-sec" class="hidden cat"></section>
<section id="cs-revised-sec-sec" class="hidden cat"></section>
<section id="open-pred-sec" class="hidden cat"></section>
<section id="open-succ-sec" class="hidden cat"></section>
<section id="open-start-sec" class="hidden cat"></section>
<section id="open-finish-sec" class="hidden cat"></section>
<section id="open-duplicate-sec" class="hidden cat"></section>
<section id="inv-start-sec" class="hidden cat"></section>
<section id="inv-finish-sec" class="hidden cat"></section>
<section id="inv-expected-sec" class="hidden cat"></section>
<section id="inv-suspend-sec" class="hidden cat"></section>
<section id="dur-long-sec" class="hidden cat"></section>
<section id="dur-short-sec" class="hidden cat"></section>
<section id="dur-zero-sec" class="hidden cat"></section>
<section id="dur-rdzero-sec" class="hidden cat"></section>
<section id="dur-odrd-sec" class="hidden cat"></section>
<section id="cost-budget-sec" class="hidden cat"></section>
<section id="cost-ev-sec" class="hidden cat"></section>
<section id="cost-regress-sec" class="hidden cat"></section>
</div>
</body>
<script src="./static/js/menuCollapse.js"></script>
<script src="./static/js/parse.js"></script>
<script src="./static/js/data.js"></script>
<script src="./static/js/utilities.js"></script>
<script src="./static/js/chart.js"></script>
<!-- <script src="https://cdn.jsdelivr.net/npm/chart.js"></script> -->
<script src="./static/js/main.js"></script>
</html>