-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
642 lines (638 loc) · 45.8 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
<!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">Schedule Comparison</title>
<link rel="stylesheet" type="text/css" href="./static/css/style.css">
</head>
<body style="max-width: 960px;">
<div id="content">
<table style="width: 100%;">
<thead>
<tr>
<th>
<header id="pageHeader"><h1>Schedule Comparison Report</h1></header>
</th>
</tr>
</thead>
<tfoot>
<tr>
<td id="legend" style="display: none;">
<img src="./static/img/complete.png" width="20px" height="10px" alt="Actual Work"><span>: Actual Work</span>
<img src="./static/img/open.png" width="20px" height="10px" alt="Remaining Work"><span>: Remaining Work</span>
<img src="./static/img/open-lp.png" width="20px" height="10px" alt="Longest Path"><span>: Longest Path</span>
<img src="./static/img/ms-open.png" width="20px" height="10px" alt="Milestone"><span>: Milestone</span>
<img src="./static/img/deleted.png" width="20px" height="10px" alt="Deleted Task"><span>: Deleted</span>
</td>
</tr>
<tr>
<td id="pageFooter"></td>
</tr>
</tfoot>
<tbody>
<tr>
<td class="width-max">
<section id="upload" class="cat width-max">
<div class="margin-top-20px tbl-border box-shadow">
<label for="current-file-selector" class="caption">Select Current XER</label>
<div class="pad-10px">
<input type="file" name="current" id="current-file-selector" accept=".xer" class="xer margin-top-5px" required>
<select title="Current Project Selector" name="current" id="current-project-selector" class="width-100 margin-top-10px" disabled=true></select>
</div>
<div id="current-errors" class="pad-10px error"></div>
</div>
<div class="margin-top-20px tbl-border box-shadow">
<label for="previous-file-selector" class="caption">Select Previous XER</label>
<div class="pad-10px">
<input type="file" name="previous" id="previous-file-selector" accept=".xer" class="xer margin-top-5px" required>
<select title="Previous Project Selector" name="previous" id="previous-project-selector" class="width-100 margin-top-10px" disabled=true></select>
</div>
<div id="previous-errors" class="pad-10px error"></div>
</div>
<div class="">
<table>
<caption>Advanced Options</caption>
<tbody>
<tr>
<td><label for="near-critical-num">Near Critical Total Float <= </label></td>
<td>
<input type="number" name="near-critical-num" id="near-critical-num" step="1" value="20" style="width: 50px">
</td>
</tr>
<tr>
<td>
<label for="high-float-num">High Float Total Float >= </label>
</td>
<td>
<input type="number" name="high-float-num" id="high-float-num" step="1" value="50" style="width: 50px">
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="show-float" id="show-float" value="Show Total Float" checked>
<label for="show-float">Show Total Float</label>
</td>
<td>
<input type="checkbox" name="show-progress" id="show-progress" value="Show Progress" checked>
<label for="show-progress">Show Progress</label>
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="show-cost" id="show-cost" value="Show Cost Loading" checked>
<label for="show-cost">Show Cost Loading</label>
</td>
<td>
<input type="checkbox" name="show-trending" id="show-trending" value="Show Constraint Trending" checked>
<label for="show-trending">Show Constraint Trending</label>
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="show-units" id="show-units" value="Show Resource Loading" checked>
<label for="show-units">Show Resource Loading</label>
</td>
</tr>
</tbody>
</table>
</div>
<div class="width-100 margin-top-20px margin-hor">
<button id="analyze-btn" disabled=true>Analyze</button>
</div>
</section>
<section id="general" class="cat hidden">
<div class="">
<div class="flex" style="justify-content: space-evenly;">
<div class="card"> <!-- Current Project -->
<table aria-label="Current Project">
<thead>
<tr>
<th class="btm-border" style="font-size: 1.2rem;">Current Project</th>
</tr>
</thead>
<tbody>
<tr>
<td id="current-project-id" class="text-center"></td>
</tr>
<tr>
<td class="width-max text-center" id="current-project-name"></td>
</tr>
</tbody>
</table>
</div>
<div style="width: 20px; text-align: center; font-size: 1.5rem; padding: 0.5em 1.0em;">VS</div>
<div class="card"> <!-- Previous Project -->
<table aria-label="Previous Project">
<thead>
<tr>
<th class=" btm-border" style="font-size: 1.2rem;">Previous Project</th>
</tr>
</thead>
<tr>
<td id="previous-project-id" class="text-center"></td>
</tr>
<tr>
<td class="width-max text-center" id="previous-project-name"></td>
</tr>
</table>
</div>
</div>
</div>
<div class="flex" style="justify-content: space-between;">
<div>
<div class="card"> <!-- Project Dates -->
<table aria-label="Project Dates Table">
<caption>Project Dates</caption>
<thead>
<tr>
<th class="text-left btm-border">Date</th>
<th class="btm-border width-8em">Current</th>
<th class="btm-border width-8em">Previous</th>
<th class="btm-border text-right">Diff</th>
</tr>
</thead>
<tbody>
<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"></td>
<td id="start-var" class="text-right no-wrap"></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"></td>
<td id="dd-var" class="text-right no-wrap"></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 "></td>
<td id="end-var" class="text-right no-wrap "></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 "></td>
<td id="mfb-var" class="text-right no-wrap "></td>
</tr>
</tbody>
</table>
</div>
<div id="progress-table" class="card"> <!-- Progress -->
<table aria-label="Progress Table">
<caption>Progress</caption>
<thead>
<tr>
<th class="text-left btm-border">Progress</th>
<th class="text-right btm-border">Current</th>
<th class="text-right btm-border">Previous</th>
<th class="text-right btm-border">Diff</th>
<th class="text-center btm-border no-wrap">Progress Chart</th>
</tr>
</thead>
<tbody>
<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 "></td>
<td id="schedule-per-var" class="text-right no-wrap "></td>
<td class="outer-progress">
<div class="progress" style="height: 15px;">
<div
id="sched-progress"
title="Schedule Duration Progress"
class="progress-bar"
role="progressbar"
aria-valuenow="0"
aria-valuemin="0"
aria-valuemax="100"
style="width: 0%">
</div>
<div
id="var-sched-progress"
title="Schedule Duration Progress"
class="progress-bar bg-info"
role="progressbar"
aria-valuenow="0"
aria-valuemin="0"
aria-valuemax="100"
style="width: 0%">
</div>
</div>
</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 "></td>
<td id="physical-per-var" class="text-right no-wrap "></td>
<td class="outer-progress">
<div class="progress" style="height: 15px;">
<div
id="phys-progress"
title="Schedule Physical Progress"
class="progress-bar"
role="progressbar"
aria-valuenow="0"
aria-valuemin="0"
aria-valuemax="100"
style="width: 0%">
</div>
<div
id="var-phys-progress"
title="Schedule Physical Progress"
class="progress-bar bg-info"
role="progressbar"
aria-valuenow="0"
aria-valuemin="0"
aria-valuemax="100"
style="width: 0%">
</div>
</div>
</td>
</tr>
<tr id="cost-progress-row">
<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 "></td>
<td id="cost-per-var" class="text-right no-wrap "></td>
<td class="outer-progress">
<div class="progress" style="height: 15px;">
<div
id="cost-progress"
title="Schedule Cost Progress"
class="progress-bar"
role="progressbar"
aria-valuenow="0"
aria-valuemin="0"
aria-valuemax="100"
style="width: 0%">
</div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="card text-right" style="margin-left: 30px; height: 100%" >
<table>
<caption>Planned vs Actual Date Counts</caption>
<thead>
<tr>
<th class="text-center">Performance Score: <span id="performance-score" style="font-size: .9rem;"></span></th>
</tr>
<tr>
<th class="text-center">For Period <span id="start-period"></span> to <span id="end-period"></span></th>
</tr>
</thead>
<tbody>
<tr>
<td class="bar-chart no-wrap" rowspan="10"><canvas id="startFinishChart"></canvas></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="card"> <!-- Activity Status -->
<table>
<caption>Activity Status</caption>
<tbody>
<tr>
<th class="text-left btm-border col-6-5em">Status</th>
<th class="text-right btm-border">Current</th>
<th class="text-right btm-border">Previous</th>
<th class="text-right btm-border col-3em ">Diff</th>
<th class="text-center btm-border">Status Chart (Activity Counts)</th>
</tr>
<tr>
<td class="no-wrap chart-red">Not Started:</td>
<td id="current-not-started" class="text-right no-wrap"></td>
<td id="previous-not-started" class="text-right no-wrap "></td>
<td id="not-started-var" class="text-right no-wrap "></td>
<td class="horiz-chart no-wrap" rowspan="5"><canvas id="activityStatusChart"></canvas></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="previous-in-progress" class="text-right no-wrap "></td>
<td id="in-progress-var" class="text-right no-wrap "></td>
</tr>
<tr>
<td class="no-wrap chart-blue">Completed:</td>
<td id="current-complete" class="text-right no-wrap"></td>
<td id="previous-complete" class="text-right no-wrap "></td>
<td id="complete-var" class="text-right no-wrap "></td>
</tr>
<tr>
<td class="no-wrap border-top">Total:</td>
<td id="current-tasks" class="text-right no-wrap border-top"></td>
<td id="previous-tasks" class="text-right no-wrap border-top "></td>
<td id="tasks-var" class="text-right no-wrap border-top "></td>
</tr>
<tr><td></td></tr>
<tr><td></td></tr>
<tbody></tbody>
</table>
</div>
<div id="float-table" class="card">
<table>
<caption>Activity Total Float</caption>
<tbody>
<tr>
<th class="text-left btm-border col-6-5em">Activity Float</th>
<th class="text-right btm-border">Current</th>
<th class="text-right btm-border">Previous</th>
<th class="text-right btm-border col-3em ">Diff</th>
<th class="text-center btm-border">Float Chart (% of Open Activities)</th>
</tr>
<tr>
<td class="no-wrap chart-red">Critical (TF < 1):</td>
<td id="current-critical-per" class="text-right no-wrap"></td>
<td id="previous-critical-per" class="text-right no-wrap "></td>
<td id="critical-var" class="text-right no-wrap "></td>
<td class="horiz-chart no-wrap" rowspan="5"><canvas id="totalFloatChart"></canvas></td>
</tr>
<tr>
<td id="near-critical-threshold" class="no-wrap chart-yellow"></td>
<td id="current-near-critical-per" class="text-right no-wrap"></td>
<td id="previous-near-critical-per" class="text-right no-wrap "></td>
<td id="near-critical-var" class="text-right no-wrap "></td>
</tr>
<tr>
<td class="no-wrap chart-green">Normal Float:</td>
<td id="current-normal-tf-per" class="text-right no-wrap"></td>
<td id="previous-normal-tf-per" class="text-right no-wrap "></td>
<td id="normal-tf-var" class="text-right no-wrap "></td>
</tr>
<tr>
<td id="high-float-threshold" class="no-wrap chart-blue"></td>
<td id="current-high-tf-per" class="text-right no-wrap"></td>
<td id="previous-high-tf-per" class="text-right no-wrap "></td>
<td id="high-tf-var" class="text-right no-wrap "></td>
</tr>
<tr>
<td class="no-wrap">Longest Path:</td>
<td id="current-longest-path-per" class="text-right no-wrap"></td>
<td id="previous-longest-path-per" class="text-right no-wrap "></td>
<td id="longest-path-var" class="text-right no-wrap "></td>
</tr>
</tbody>
</table>
</div>
<div id="constraint-variance" class="card" ></div>
<div id="cost-loading" class="card"> <!-- Cost Loading -->
<table class="no-break" style="width: 100%;">
<caption>Cost Loading</caption>
<tbody>
<tr>
<th class="text-left btm-border width-10em">Cost</th>
<th class="text-right btm-border width-10em">Current</th>
<th class="text-right btm-border width-10em ">Previous</th>
<th class="text-right btm-border width-10em ">Diff</th>
<td class="chart no-wrap" rowspan="5"><canvas id="costLoadingChart"></canvas></td>
</tr>
<tr>
<td class="no-wrap chart-blue">Actual To Date:</td>
<td id="current-actual-cost" class="text-right no-wrap"></td>
<td id="previous-actual-cost" class="text-right no-wrap "></td>
<td id="actual-cost-var" class="text-right no-wrap "></td>
</tr>
<tr>
<td class="no-wrap chart-red">Remaining Cost:</td>
<td id="current-remaining-cost" class="text-right no-wrap"></td>
<td id="previous-remaining-cost" class="text-right no-wrap "></td>
<td id="remaining-cost-var" class="text-right no-wrap "></td>
</tr>
<tr>
<td class="no-wrap">Budgeted Cost:</td>
<td id="current-budget" class="text-right no-wrap"></td>
<td id="previous-budget" class="text-right no-wrap "></td>
<td id="budget-var" class="text-right no-wrap "></td>
</tr>
<tr>
<td class="no-wrap">This Period Cost:</td>
<td id="current-this-period" class="text-right no-wrap"></td>
<td id="previous-this-period" class="text-right no-wrap "></td>
<td id="this-period-var" class="text-right no-wrap "></td>
</tr>
</tbody>
</table>
</div>
<div id="resource-loading" class="card"> <!-- Resource Loading -->
<table class="no-break" style="width: 100%;">
<caption>Resource Loading</caption>
<tbody>
<tr>
<th class="text-left btm-border width-10em">Units</th>
<th class="text-right btm-border width-10em">Current</th>
<th class="text-right btm-border width-10em ">Previous</th>
<th class="text-right btm-border width-10em ">Diff</th>
<td class="chart no-wrap" rowspan="5"><canvas id="resourceLoadingChart"></canvas></td>
</tr>
<tr>
<td class="no-wrap chart-blue">Actual To Date:</td>
<td id="current-actual-qty" class="text-right no-wrap"></td>
<td id="previous-actual-qty" class="text-right no-wrap "></td>
<td id="actual-qty-var" class="text-right no-wrap "></td>
</tr>
<tr>
<td class="no-wrap chart-red">Remaining Qty:</td>
<td id="current-remaining-qty" class="text-right no-wrap"></td>
<td id="previous-remaining-qty" class="text-right no-wrap "></td>
<td style="max-width: min-content;" id="remaining-qty-var" class="text-right no-wrap "></td>
</tr>
<tr>
<td class="no-wrap">Budgeted Qty:</td>
<td id="current-qty" class="text-right no-wrap"></td>
<td id="previous-qty" class="text-right no-wrap "></td>
<td id="qty-var" class="text-right no-wrap "></td>
</tr>
<tr>
<td class="no-wrap">Qty 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 "></td>
<td id="this-period-qty-var" class="text-right no-wrap "></td>
</tr>
</tbody>
</table>
</div>
<div class="card no-break grid"> <!-- Schedule revisions -->
<div id="rev-col-1">
<table style="width: 100%;">
<caption>Activity Revisions</caption>
<tr>
<td class="text-left" id="tk-added-label">Added Activities:</td>
<td class="text-right" id="tk-added"></td>
</tr>
<tr>
<td class="text-left" id="tk-deleted-label">Deleted Activities:</td>
<td class="text-right" id="tk-deleted"></td>
</tr>
<tr>
<td class="text-left" id="tk-name-label">Revised Activity Names:</td>
<td class="text-right" id="tk-name"></td>
</tr>
<tr>
<td class="text-left" id="tk-duration-label">Revised Durations:</td>
<td class="text-right" id="tk-duration"></td>
</tr>
<tr>
<td class="text-left" id="tk-start-label">Actual Start Changes:</td>
<td class="text-right" id="tk-start"></td>
</tr>
<tr>
<td class="text-left" id="tk-finish-label">Actual Finish Changes:</td>
<td class="text-right" id="tk-finish"></td>
</tr>
<tr>
<td class="text-left" id="tk-calendar-label">Revised Calendar:</td>
<td class="text-right" id="tk-calendar"></td>
</tr>
<tr>
<td class="text-left" id="tk-wbs-label">Revised WBS:</td>
<td class="text-right" id="tk-wbs"></td>
</tr>
<tr>
<td class="text-left" id="tk-type-label">Revised Activity Types:</td>
<td class="text-right" id="tk-type"></td>
</tr>
</table>
<table style="width: 100%;">
<caption>WBS Revisions</caption>
<tr>
<td class="text-left" id="wbs-added-label">Added WBS Nodes:</td>
<td class="text-right" id="wbs-added"></td>
</tr>
<tr>
<td class="text-left" id="wbs-deleted-label">Deleted WBS Nodes:</td>
<td class="text-right" id="wbs-deleted"></td>
</tr>
<tr>
<td class="text-left" id="wbs-revised-label">Revised WBS Names:</td>
<td class="text-right" id="wbs-revised"></td>
</tr>
</table>
</div>
<div id="rev-col-2">
<table style="width: 100%;">
<caption>Logic Revisions</caption>
<tr>
<td class="text-left" id="rl-added-label">Added Relationships:</td>
<td class="text-right" id="rl-added"></td>
</tr>
<tr>
<td class="text-left" id="rl-deleted-label">Deleted Relationships:</td>
<td class="text-right" id="rl-deleted"></td>
</tr>
<tr>
<td class="text-left" id="rl-revised-label">Revised Relationships:</td>
<td class="text-right" id="rl-revised"></td>
</tr>
</table>
<table style="width: 100%;">
<caption>Resource Revisions</caption>
<tr>
<td class="text-left" id="rs-added-label">Added Resources:</td>
<td class="text-right" id="rs-added"></td>
</tr>
<tr>
<td class="text-left" id="rs-deleted-label">Deleted Resources:</td>
<td class="text-right" id="rs-deleted"></td>
</tr>
<tr>
<td class="text-left" id="rs-cost-label">Budgeted Cost Changes:</td>
<td class="text-right" id="rs-cost"></td>
</tr>
<tr>
<td class="text-left" id="rs-units-label">Budgeted Qty Changes:</td>
<td class="text-right" id="rs-units"></td>
</tr>
</table>
<table style="width: 100%;">
<caption>Notebook Revisions</caption>
<tr>
<td class="text-left" id="nb-added-label">Added Notebook Memos:</td>
<td class="text-right" id="nb-added"></td>
</tr>
<tr>
<td class="text-left" id="nb-deleted-label">Deleted Notebook Memos:</td>
<td class="text-right" id="nb-deleted"></td>
</tr>
<tr>
<td class="text-left" id="nb-revised-label">Revised Notbook Memos:</td>
<td class="text-right" id="nb-revised"></td>
</tr>
</table>
</div>
<div id="rev-col-3">
<table style="width: 100%;">
<caption>Calendar Revisions</caption>
<tr>
<td class="text-left" id="cal-added-label">Added Calendars:</td>
<td class="text-right" id="cal-added"></td>
</tr>
<tr>
<td class="text-left" id="cal-deleted-label">Deleted Calendars:</td>
<td class="text-right" id="cal-deleted"></td>
</tr>
<tr>
<td class="text-left" id="cal-added-hol-label">Added Non-Work Day:</td>
<td class="text-right" id="cal-added-hol"></td>
</tr>
<tr>
<td class="text-left" id="cal-deleted-hol-label">Deleted Non-Work Day:</td>
<td class="text-right" id="cal-deleted-hol"></td>
</tr>
<tr>
<td class="text-left" id="cal-added-except-label">Added Work Day:</td>
<td class="text-right" id="cal-added-except"></td>
</tr>
<tr>
<td class="text-left" id="cal-deleted-except-label">Deleted Work Day:</td>
<td class="text-right" id="cal-deleted-except"></td>
</tr>
</table>
<table style="width: 100%;">
<caption>Constraint Revisions</caption>
<tr>
<td class="text-left" id="cs-added-prim-label">Added Prime Constraints:</td>
<td class="text-right" id="cs-added-prim"></td>
</tr>
<tr>
<td class="text-left" id="cs-deleted-prim-label">Deleted Prime Constraints:</td>
<td class="text-right" id="cs-deleted-prim"></td>
</tr>
<tr>
<td class="text-left" id="cs-revised-prim-label">Revised Prime Constraints:</td>
<td class="text-right" id="cs-revised-prim"></td>
</tr>
<tr>
<td class="text-left" id="cs-added-sec-label">Added Second Constraints:</td>
<td class="text-right" id="cs-added-sec"></td>
</tr>
<tr>
<td class="text-left" id="cs-deleted-sec-label">Deleted Second Constraints:</td>
<td class="text-right" id="cs-deleted-sec"></td>
</tr>
<tr>
<td class="text-left" id="cs-revised-sec-label">Revised Second Constraints:</td>
<td class="text-right" id="cs-revised-sec"></td>
</tr>
</table>
</div>
</div>
</section>
<section id="revisions-sec" style="display: none;"></section>
</td>
</tr>
</tbody>
</table>
</div>
</body>
<script src="./static/js/chart.js"></script>
<script type="module" src="./static/js/main.js"></script>
</html>