-
Notifications
You must be signed in to change notification settings - Fork 2
/
overdue.html
2645 lines (2510 loc) · 116 KB
/
overdue.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
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>HEARTS360: Overdue Patients List</title>
<meta
name="description"
content="A free, open source, template for creating a very useful hypertension and diabetes dashboard to support public health projects."
/>
<meta name="author" content="Resolve to Save Lives" />
<link rel="icon" href="favicon.png" />
<link rel="stylesheet" href="css/preflight.css?v=1.0" />
<link rel="stylesheet" href="css/template.css" />
<link rel="stylesheet" href="css/overdue.css" />
</head>
<body>
<div class="banner">
<div class="banner-body">
<h1><span>HEARTS</span>360</h1>
<div>
<div class="link-list">
<span
class="desktop-only"
style="
padding: 2px 4px;
background: #3063c2;
display: inline-block;
height: 100%;
color: white;
border-radius: 3px;
font-size: 11px;
"
>v1.3</span
>
<a href="about.html">About</a>
<a
class="external-link desktop-only"
href="https://github.com/simpledotorg/hearts360#developer-guide"
>Developer guide</a
>
<a
class="external-link"
href="https://github.com/simpledotorg/hypertension-dashboard"
>GitHub</a
>
</div>
</div>
</div>
</div>
<div class="link-dashboards">
<div>
<a href="index.html">
Hypertension <span class="desktop-only">dashboard</span>
</a>
<a href="diabetes.html">
Diabetes <span class="desktop-only">dashboard</span>
</a>
<a href="overdue.html" class="active">
Overdue <span class="desktop-only">patients list</span>
</a>
</div>
</div>
<main class="main">
<div class="card">
<div class="heading">
<h2>Overdue patients</h2>
<p>3,250 overdue patients in River District</p>
<div class="date-updated">
<a href="#">Download list (XLS)</a>
</div>
</div>
<div class="table-container">
<p class="table-scroll-message text-grey mobile-only">
scroll table →
</p>
<div class="table-wrap">
<table>
<thead>
<tr>
<th>
Overdue status
<form class="table-filter">
<select class="select-main">
<option>All</option>
<option selected="selected">
Pending to call: 2,500
</option>
<option>Agreed to visit: 400</option>
<option>Remind to call later: 10</option>
<option>Removed from list: 40</option>
<option>No visit in 1 year: 300</option>
</select>
</form>
</th>
<th>
Patient
<form class="table-filter">
<input type="search" placeholder="Search" />
</form>
</th>
<th>Sex</th>
<th>Age</th>
<th>
Phone
<form class="table-filter">
<select style="max-width: 12em">
<option></option>
<option>Only with phone</option>
<option>Only without phone</option>
</select>
</form>
</th>
<th>
High risk?
<form class="table-filter">
<select style="max-width: 8em">
<option></option>
<option>Only high risk</option>
</select>
</form>
</th>
<th>
HTN or DM
<form class="table-filter">
<div>
<select>
<option></option>
<option>HTN-only</option>
<option>DM-only</option>
<option>HTN+DM</option>
</select>
</div>
</form>
</th>
<th>
Facility
<form class="table-filter">
<select style="max-width: 12em">
<option></option>
<option>CHC Apple Orchard</option>
<option>CHC Bramble River</option>
<option>CHC Bumpy Hill</option>
<option>CHC Carrot Peak</option>
<option>CHC Cumin Creek</option>
<option>CHC Dandelion Wine</option>
<option>CHC Elderflower Ridge</option>
<option>CHC Riverside</option>
<option>CHC Rhubarb Hills</option>
<option>CHC Turnip</option>
<option>CHC Ugly Fruit Bay</option>
<option>CHC Vine Bay</option>
<option>CHC Watermelon Cove</option>
<option>CHC Weather Top</option>
<option>CHC Yellow Melon</option>
<option>CHC Young Potato</option>
<option>CHC Zucchiniville</option>
<option>District Hospital Strawberry</option>
<option>PHC Apricot Island</option>
<option>PHC Azalea Hills</option>
<option>PHC Bumblebee</option>
<option>PHC Capital Town</option>
<option>PHC Copperville</option>
<option>PHC Cupola</option>
<option>PHC Dartboard Hill</option>
<option>PHC Deck Town</option>
<option>PHC Dune Hill</option>
<option>PHC Eagle Hill</option>
<option>PHC Eggplant Mountain</option>
<option>PHC El Toro</option>
<option>PHC Fang Cove</option>
<option>PHC Grapefruit Hill</option>
<option>PHC Gumdrop Cove</option>
<option>PHC Happy Street</option>
<option>PHC Hilltop Station</option>
<option>PHC Iceberg</option>
<option>PHC Idaho Hills</option>
<option>PHC Jackfruit</option>
<option>PHC Juniperberry</option>
<option>PHC Lard Lane</option>
<option>PHC Lobby Mountain</option>
<option>Subdistrict Hospital Grape</option>
<option>Subdistrict Hospital Juniper</option>
<option>Subdistrict Hospital Grasslands</option>
<option>UPHC Cinnamon Hill</option>
<option>UPHC Dandelion Mountain</option>
<option>UPHC Dill Weed</option>
<option>UPHC Dry Marjoram</option>
<option>UPHC Dry Mustard</option>
<option>UPHC Dry Nutmeg</option>
</select>
</form>
</th>
<th>
Home village / area
<form class="table-filter">
<input
type="search"
placeholder="Search"
style="width: 12em"
/>
</form>
</th>
<th>
Overdue
<a href="#" class="table-sort"></a>
</th>
</tr>
<tr>
<th
colspan="10"
style="
font-weight: normal;
font-size: 0.8rem;
background: LightGoldenrodYellow;
color: rgba(0, 0, 0, 0.7);
"
>
Showing 2,500 patients who have not been contacted yet.
Instruction: Call patients and then change the overdue
status.
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<form>
<select class="mark-result">
<option>Pending to call</option>
<option>Agreed to visit</option>
<option>Remind to call later</option>
<optgroup label="Or, remove from list">
<option>Already visited</option>
<option>Unavailable</option>
<option>Wrong phone #</option>
<option>Changed facilities</option>
<option>Moved</option>
<option>Died</option>
<option>Refused to return</option>
<option>Other</option>
</optgroup>
</select>
</form>
</td>
<td>
<div class="overdue-patient">
<button onclick="openModal('patient01')">
Amrith Madeupname
</button>
<div class="modal" id="patient01">
<button onclick="closeOpenModal()" class="modal-close">
Close
</button>
<h2>Amrith Madeupname, M, 90</h2>
<p>
<span class="pill pill-high-risk">High risk</span>
<span class="pill pill-hypertension"
>Hypertension</span
>
</p>
<a href="tel:2251234999" class="phone-large"
>2251234999</a
>
<form>
<select class="mark-result">
<option>Pending to call</option>
<option>Agreed to visit</option>
<option>Remind to call later</option>
<optgroup label="Or, remove from list">
<option>Already visited</option>
<option>Unavailable</option>
<option>Wrong phone #</option>
<option>Changed facilities</option>
<option>Moved</option>
<option>Died</option>
<option>Refused to return</option>
<option>Other</option>
</optgroup>
</select>
</form>
<h4>Appointment</h4>
<div class="overdue-patient-details">
<p>
<b class="label">Overdue:</b>
<span class="red">3 days</span>
</p>
<p><b class="label">Date:</b> 26-Jul-2024</p>
<p><b class="label">Facility:</b> PHC Blueberry</p>
</div>
<h4>Patient details</h4>
<div class="overdue-patient-details">
<p>
<b class="label">National Health ID:</b> 4454567C
</p>
<p>
<b class="label">Home address:</b> 45 MG Road, Flat
6098, Lakeside, River District
</p>
<p>
<b class="label">Enrolled at:</b> PHC Carrotville
</p>
<p><b class="label">Enrolled:</b> 30-Dec-2023</p>
</div>
<h4>Most recent visit</h4>
<div class="overdue-patient-details">
<p>
<b class="label">Date:</b> 30-Jun-2024 (34 days ago)
</p>
<p><b class="label">Blood pressure:</b> 170 / 68</p>
<p>
<b class="label">Medicine:</b> Amlodipine 5 mg,
Telmisartan 40 mg
</p>
<p><b class="label">Facility:</b> PHC Carrotville</p>
</div>
<h4>Call log</h4>
<p><b class="label"><No calls yet></b></p>
</div>
</div>
</td>
<td>M</td>
<td>90</td>
<td>
<a href="tel:4451234123" class="phone">2251234999</a>
</td>
<td><span class="pill pill-high-risk">High risk</span></td>
<td><span class="pill pill-hypertension">HTN only</span></td>
<td>PHC Carrotville</td>
<td>Lakeside</td>
<td><span class="red">3 days</span></td>
</tr>
<tr>
<td>
<form>
<select class="mark-result">
<option>Pending to call</option>
<option>Agreed to visit</option>
<option>Remind to call later</option>
<optgroup label="Or, remove from list">
<option>Already visited</option>
<option>Unavailable</option>
<option>Wrong phone #</option>
<option>Changed facilities</option>
<option>Moved</option>
<option>Died</option>
<option>Refused to return</option>
<option>Other</option>
</optgroup>
</select>
</form>
</td>
<td>
<div class="overdue-patient">
<button onclick="openModal('patient02')">
Mahima Longnameperson
</button>
<div class="modal" id="patient02">
<button onclick="closeOpenModal()" class="modal-close">
Close
</button>
<h2>Mahima Longnameperson, F, 76</h2>
<p>
<span class="pill pill-hypertension"
>Hypertension</span
>
</p>
<a href="tel:5551234021" class="phone-large"
>5551234021</a
>
<form>
<select class="mark-result">
<option>Pending to call</option>
<option>Agreed to visit</option>
<option>Remind to call later</option>
<optgroup label="Or, remove from list">
<option>Already visited</option>
<option>Unavailable</option>
<option>Wrong phone #</option>
<option>Changed facilities</option>
<option>Moved</option>
<option>Died</option>
<option>Refused to return</option>
<option>Other</option>
</optgroup>
</select>
</form>
<h4>Appointment</h4>
<div class="overdue-patient-details">
<p>
<b class="label">Overdue:</b>
<span class="red">4 days</span>
</p>
<p><b class="label">Date:</b> 25-Jul-2024</p>
<p><b class="label">Facility:</b> PHC Jackfruit</p>
</div>
<h4>Patient details</h4>
<div class="overdue-patient-details">
<p>
<b class="label">National Health ID:</b> 4454567C
</p>
<p>
<b class="label">Home address:</b> 809 Church Rd,
Section 56, River District
</p>
<p><b class="label">Enrolled at:</b> PHC Jackfruit</p>
<p><b class="label">Enrolled:</b> 30-Dec-2023</p>
</div>
<h4>Most recent visit</h4>
<div class="overdue-patient-details">
<p>
<b class="label">Date:</b> 29-Jun-2024 (35 days ago)
</p>
<p><b class="label">Blood pressure:</b> 145 / 60</p>
<p><b class="label">Medicine:</b> Amlodipine 5 mg</p>
<p><b class="label">Facility:</b> PHC Jackfruit</p>
</div>
<h4>Call log</h4>
<p><b class="label"><No calls yet></b></p>
</div>
</div>
</td>
<td>F</td>
<td>76</td>
<td>
<a href="tel:4451234123" class="phone">5551234021</a>
</td>
<td>—</td>
<td><span class="pill pill-hypertension">HTN only</span></td>
<td>PHC Jackfruit</td>
<td>Section 56</td>
<td><span class="red">4 days</span></td>
</tr>
<tr>
<td>
<form>
<select class="mark-result">
<option>Pending to call</option>
<option>Agreed to visit</option>
<option>Remind to call later</option>
<optgroup label="Or, remove from list">
<option>Already visited</option>
<option>Unavailable</option>
<option>Wrong phone #</option>
<option>Changed facilities</option>
<option>Moved</option>
<option>Died</option>
<option>Refused to return</option>
<option>Other</option>
</optgroup>
</select>
</form>
</td>
<td>
<div class="overdue-patient">
<button onclick="openModal('patient03')">
Prabhdeep Storyline
</button>
<div class="modal" id="patient03">
<button onclick="closeOpenModal()" class="modal-close">
Close
</button>
<h2>Prabhdeep Storyline, F, 45</h2>
<p>
<span class="pill pill-hypertension"
>Hypertension</span
>
<span class="pill pill-diabetes">Diabetes</span>
</p>
<span class="phone-large-none"><No phone></span>
<form>
<select class="mark-result">
<option>Pending to call</option>
<option>Agreed to visit</option>
<option>Remind to call later</option>
<optgroup label="Or, remove from list">
<option>Already visited</option>
<option>Unavailable</option>
<option>Wrong phone #</option>
<option>Changed facilities</option>
<option>Moved</option>
<option>Died</option>
<option>Refused to return</option>
<option>Other</option>
</optgroup>
</select>
</form>
<h4>Appointment</h4>
<div class="overdue-patient-details">
<p>
<b class="label">Overdue:</b>
<span class="red">5 days</span>
</p>
<p><b class="label">Date:</b> 24-Jul-2024</p>
<p><b class="label">Facility:</b> PHC Fang Cove</p>
</div>
<h4>Patient details</h4>
<div class="overdue-patient-details">
<p>
<b class="label">National Health ID:</b> 2254567A
</p>
<p>
<b class="label">Home address:</b> 9087 Main Road,
Mole Hill, River District
</p>
<p>
<b class="label">Enrolled at:</b> CHC Weather Top
</p>
<p><b class="label">Enrolled:</b> 30-Dec-2023</p>
</div>
<h4>Most recent visit</h4>
<div class="overdue-patient-details">
<p>
<b class="label">Date:</b> 27-Jun-2024 (34 days ago)
</p>
<p><b class="label">Blood pressure:</b> 170 / 68</p>
<p><b class="label">Blood sugar:</b> FBS 140 mg/dL</p>
<p>
<b class="label">Medicine:</b> Amlodipine 10 mg,
Metformin 500 mg
</p>
<p><b class="label">Facility:</b> CHC Weather Top</p>
</div>
<h4>Call log</h4>
<p><b class="label"><No calls yet></b></p>
</div>
</div>
</td>
<td>F</td>
<td>45</td>
<td>—</td>
<td>—</td>
<td>
<span class="pill pill-hypertension">HTN</span
><span class="pill pill-diabetes">DM</span>
</td>
<td>PHC Fang Cove</td>
<td>Mole Hill</td>
<td><span class="red">5 days</span></td>
</tr>
<tr>
<td>
<form>
<select class="mark-result">
<option>Pending to call</option>
<option>Agreed to visit</option>
<option>Remind to call later</option>
<optgroup label="Or, remove from list">
<option>Already visited</option>
<option>Unavailable</option>
<option>Wrong phone #</option>
<option>Changed facilities</option>
<option>Moved</option>
<option>Died</option>
<option>Refused to return</option>
<option>Other</option>
</optgroup>
</select>
</form>
</td>
<td>
<div class="overdue-patient">
<button onclick="openModal('patient04')">
Pragati Fictionelle
</button>
<div class="modal" id="patient04">
<button onclick="closeOpenModal()" class="modal-close">
Close
</button>
<h2>Pragati Fictionelle, F, 36</h2>
<p>
<span class="pill pill-hypertension"
>Hypertension</span
>
</p>
<a href="tel:3211234990" class="phone-large"
>3211234990</a
>
<form>
<select class="mark-result">
<option>Pending to call</option>
<option>Agreed to visit</option>
<option>Remind to call later</option>
<optgroup label="Or, remove from list">
<option>Already visited</option>
<option>Unavailable</option>
<option>Wrong phone #</option>
<option>Changed facilities</option>
<option>Moved</option>
<option>Died</option>
<option>Refused to return</option>
<option>Other</option>
</optgroup>
</select>
</form>
<h4>Appointment</h4>
<div class="overdue-patient-details">
<p>
<b class="label">Overdue:</b>
<span class="red">6 days</span>
</p>
<p><b class="label">Date:</b> 20-Jul-2024</p>
<p><b class="label">Facility:</b> PHC Azalea Hills</p>
</div>
<h4>Patient details</h4>
<div class="overdue-patient-details">
<p>
<b class="label">National Health ID:</b> 0454567F
</p>
<p>
<b class="label">Home address:</b> 90 MG Road, Flat
6098, Lakeside, River District
</p>
<p>
<b class="label">Enrolled at:</b> PHC Azalea Hills
</p>
<p><b class="label">Enrolled:</b> 30-Dec-2023</p>
</div>
<h4>Most recent visit</h4>
<div class="overdue-patient-details">
<p>
<b class="label">Date:</b> 23-Jun-2024 (34 days ago)
</p>
<p><b class="label">Blood pressure:</b> 170 / 68</p>
<p>
<b class="label">Medicine:</b> Amlodipine 5 mg,
Telmisartan 40 mg
</p>
<p><b class="label">Facility:</b> PHC Azalea Hills</p>
</div>
<h4>Call log</h4>
<p><b class="label"><No calls yet></b></p>
</div>
</div>
</td>
<td>F</td>
<td>36</td>
<td>
<a href="tel:3211234990" class="phone">3211234990</a>
</td>
<td>—</td>
<td><span class="pill pill-hypertension">HTN only</span></td>
<td>PHC Azalea Hills</td>
<td>Lakeside</td>
<td><span class="red">6 days</span></td>
</tr>
<tr>
<td>
<form>
<select class="mark-result">
<option>Pending to call</option>
<option>Agreed to visit</option>
<option>Remind to call later</option>
<optgroup label="Or, remove from list">
<option>Already visited</option>
<option>Unavailable</option>
<option>Wrong phone #</option>
<option>Changed facilities</option>
<option>Moved</option>
<option>Died</option>
<option>Refused to return</option>
<option>Other</option>
</optgroup>
</select>
</form>
</td>
<td>
<div class="overdue-patient">
<button onclick="openModal('patient05')">
Amrith Novella
</button>
<div class="modal" id="patient05">
<button onclick="closeOpenModal()" class="modal-close">
Close
</button>
<h2>Amrith Novella, M, 67</h2>
<p>
<span class="pill pill-high-risk">High risk</span>
<span class="pill pill-hypertension"
>Hypertension</span
>
</p>
<a href="tel:3351234876" class="phone-large"
>3351234876</a
>
<form>
<select class="mark-result">
<option>Pending to call</option>
<option>Agreed to visit</option>
<option>Remind to call later</option>
<optgroup label="Or, remove from list">
<option>Already visited</option>
<option>Unavailable</option>
<option>Wrong phone #</option>
<option>Changed facilities</option>
<option>Moved</option>
<option>Died</option>
<option>Refused to return</option>
<option>Other</option>
</optgroup>
</select>
</form>
<h4>Appointment</h4>
<div class="overdue-patient-details">
<p>
<b class="label">Overdue:</b>
<span class="red">7 days</span>
</p>
<p><b class="label">Date:</b> 19-Jul-2024</p>
<p><b class="label">Facility:</b> PHC Bumblebee</p>
</div>
<h4>Patient details</h4>
<div class="overdue-patient-details">
<p>
<b class="label">National Health ID:</b> 4454567C
</p>
<p>
<b class="label">Home address:</b> 109 River Road,
Flat 98, River Valley, River District
</p>
<p><b class="label">Enrolled at:</b> PHC Bumblebee</p>
<p><b class="label">Enrolled:</b> 30-Dec-2023</p>
</div>
<h4>Most recent visit</h4>
<div class="overdue-patient-details">
<p>
<b class="label">Date:</b> 26-Jun-2024 (38 days ago)
</p>
<p><b class="label">Blood pressure:</b> 130 / 80</p>
<p>
<b class="label">Medicine:</b> Amlodipine 10 mg,
Telmisartan 40 mg
</p>
<p><b class="label">Facility:</b> PHC Bumblebee</p>
</div>
<h4>Call log</h4>
<p><b class="label"><No calls yet></b></p>
</div>
</div>
</td>
<td>M</td>
<td>67</td>
<td>
<a href="tel:3351234876" class="phone">3351234876</a>
</td>
<td><span class="pill pill-high-risk">High risk</span></td>
<td><span class="pill pill-hypertension">HTN only</span></td>
<td>PHC Bumblebee</td>
<td>River Valley</td>
<td><span class="red">7 days</span></td>
</tr>
<tr>
<td>
<form>
<select class="mark-result">
<option>Pending to call</option>
<option>Agreed to visit</option>
<option>Remind to call later</option>
<optgroup label="Or, remove from list">
<option>Already visited</option>
<option>Unavailable</option>
<option>Wrong phone #</option>
<option>Changed facilities</option>
<option>Moved</option>
<option>Died</option>
<option>Refused to return</option>
<option>Other</option>
</optgroup>
</select>
</form>
</td>
<td>
<div class="overdue-patient">
<button onclick="openModal('patient05A')">
Honey Poem
</button>
<div class="modal" id="patient05A">
<button onclick="closeOpenModal()" class="modal-close">
Close
</button>
<h2>Honey Poem, F, 89</h2>
<p><span class="pill pill-diabetes">Diabetes</span></p>
<a href="tel:0512349916" class="phone-large"
>0512349916</a
>
<form>
<select class="mark-result">
<option>Pending to call</option>
<option>Agreed to visit</option>
<option>Remind to call later</option>
<optgroup label="Or, remove from list">
<option>Already visited</option>
<option>Unavailable</option>
<option>Wrong phone #</option>
<option>Changed facilities</option>
<option>Moved</option>
<option>Died</option>
<option>Refused to return</option>
<option>Other</option>
</optgroup>
</select>
</form>
<h4>Appointment</h4>
<div class="overdue-patient-details">
<p>
<b class="label">Overdue:</b>
<span class="red">7 days</span>
</p>
<p><b class="label">Date:</b> 19-Jul-2024</p>
<p><b class="label">Facility:</b> PHC Azalea Hills</p>
</div>
<h4>Patient details</h4>
<div class="overdue-patient-details">
<p>
<b class="label">National Health ID:</b> 4454567C
</p>
<p>
<b class="label">Home address:</b> 908 4th Road,
Lakeside, River District
</p>
<p>
<b class="label">Enrolled at:</b> PHC Azalea Hills
</p>
<p><b class="label">Enrolled:</b> 30-Dec-2023</p>
</div>
<h4>Most recent visit</h4>
<div class="overdue-patient-details">
<p>
<b class="label">Date:</b> 30-Jun-2024 (34 days ago)
</p>
<p><b class="label">Blood sugar:</b> FBS 150 mg/dL</p>
<p><b class="label">Medicine:</b> Metformin 500 mg</p>
<p><b class="label">Facility:</b> PHC Azalea Hills</p>
</div>
<h4>Call log</h4>
<p><b class="label"><No calls yet></b></p>
</div>
</div>
</td>
<td>M</td>
<td>90</td>
<td>
<a href="tel:0512349916" class="phone">0512349916</a>
</td>
<td>—</td>
<td><span class="pill pill-diabetes">DM only</span></td>
<td>PHC Azalea Hills</td>
<td>Lakeside</td>
<td><span class="red">7 days</span></td>
</tr>
<tr>
<td>
<form>
<select class="mark-result">
<option>Pending to call</option>
<option>Agreed to visit</option>
<option>Remind to call later</option>
<optgroup label="Or, remove from list">
<option>Already visited</option>
<option>Unavailable</option>
<option>Wrong phone #</option>
<option>Changed facilities</option>
<option>Moved</option>
<option>Died</option>
<option>Refused to return</option>
<option>Other</option>
</optgroup>
</select>
</form>
</td>
<td>
<div class="overdue-patient">
<button onclick="openModal('patient06')">
Anupam Longform Fiction
</button>
<div class="modal" id="patient06">
<button onclick="closeOpenModal()" class="modal-close">
Close
</button>
<h2>Anupam Longform Fiction, F, 90</h2>
<p>
<span class="pill pill-hypertension"
>Hypertension</span
>
</p>
<a href="tel:1231129087" class="phone-large"
>1231129087</a
>
<form>
<select class="mark-result">
<option>Pending to call</option>
<option>Agreed to visit</option>
<option>Remind to call later</option>
<optgroup label="Or, remove from list">
<option>Already visited</option>
<option>Unavailable</option>
<option>Wrong phone #</option>
<option>Changed facilities</option>
<option>Moved</option>
<option>Died</option>
<option>Refused to return</option>
<option>Other</option>
</optgroup>
</select>
</form>
<h4>Appointment</h4>
<div class="overdue-patient-details">
<p>
<b class="label">Overdue:</b>
<span class="red">8 days</span>
</p>
<p><b class="label">Date:</b> 18-Jul-2024</p>
<p><b class="label">Facility:</b> PHC Copperville</p>
</div>
<h4>Patient details</h4>
<div class="overdue-patient-details">
<p>
<b class="label">National Health ID:</b> 4454567C
</p>
<p>
<b class="label">Home address:</b> 908 Long Road,
Waterstone, River District
</p>
<p>
<b class="label">Enrolled at:</b> PHC Copperville
</p>
<p><b class="label">Enrolled:</b> 30-Dec-2023</p>
</div>
<h4>Most recent visit</h4>
<div class="overdue-patient-details">
<p>
<b class="label">Date:</b> 22-Jun-2024 (34 days ago)
</p>
<p><b class="label">Blood pressure:</b> 141 / 68</p>
<p>
<b class="label">Medicine:</b> Amlodipine 5 mg,
Telmisartan 40 mg
</p>
<p><b class="label">Facility:</b> PHC Copperville</p>
</div>
<h4>Call log</h4>
<p><b class="label"><No calls yet></b></p>
</div>
</div>
</td>
<td>F</td>
<td>90</td>
<td>
<a href="tel:1231129087" class="phone">1231129087</a>
</td>
<td>—</td>
<td><span class="pill pill-hypertension">HTN only</span></td>
<td>PHC Copperville</td>
<td>Waterstone</td>