|
1 | 1 | from edc_constants.constants import OTHER
|
2 | 2 |
|
| 3 | +from edc_list_data.row import Row |
| 4 | + |
3 | 5 | list_data = {
|
4 | 6 | "edc_list_data.antibiotic": [
|
5 | 7 | ("amoxicillin_ampicillin", "Amoxicillin/Ampicillin"),
|
|
33 | 35 | (OTHER, "Other, please specify:"),
|
34 | 36 | ],
|
35 | 37 | "edc_list_data.symptom": [
|
36 |
| - ("double_vision", "Double vision"), |
37 |
| - ("behaviour_change", "Behaviour change"), |
38 |
| - ("confusion", "Confusion"), |
39 |
| - ("cough", "Cough"), |
40 |
| - ("drowsiness", "Drowsiness"), |
41 |
| - ("fever", "Fever"), |
42 |
| - ("focal_weakness", "Focal weakness"), |
43 |
| - ("headache", "Headache"), |
44 |
| - ("hearing_loss", "Hearing loss"), |
45 |
| - ("nausea", "Nausea"), |
46 |
| - ("seizures_gt_72", "Seizures (72 hrs - 1 mo)"), |
47 |
| - ("seizures_lt_72 hrs", "Seizures (<72 hrs)"), |
48 |
| - ("shortness_of_breath", "Shortness of breath"), |
49 |
| - ("skin_lesions", "Skin lesions"), |
50 |
| - ("visual_loss", "Visual loss"), |
51 |
| - ("vomiting", "Vomiting"), |
52 |
| - ("weight_loss", "Weight loss"), |
| 38 | + Row(("double_vision", "Double vision", "01")), |
| 39 | + Row(("behaviour_change", "Behaviour change", "02")), |
| 40 | + Row(("confusion", "Confusion", "03")), |
| 41 | + Row(("cough", "Cough", "04")), |
| 42 | + Row(("drowsiness", "Drowsiness", "05")), |
| 43 | + Row(("fever", "Fever", "06")), |
| 44 | + Row(("focal_weakness", "Focal weakness", "07")), |
| 45 | + Row(("headache", "Headache", "08")), |
| 46 | + Row(("hearing_loss", "Hearing loss", "09")), |
| 47 | + Row(("nausea", "Nausea", "10")), |
| 48 | + Row(("seizures_gt_72", "Seizures (72 hrs - 1 mo)", "11")), |
| 49 | + Row(("seizures_lt_72 hrs", "Seizures (<72 hrs)", "12")), |
| 50 | + Row(("shortness_of_breath", "Shortness of breath", "13"), extra="Uganda"), |
| 51 | + Row(("skin_lesions", "Skin lesions", "14"), extra="Uganda"), |
| 52 | + Row(("visual_loss", "Visual loss", "15"), extra="Uganda"), |
| 53 | + Row(("vomiting", "Vomiting", "16"), extra="Uganda"), |
| 54 | + Row(("weight_loss", "Weight loss", "17"), extra="Uganda"), |
53 | 55 | ],
|
54 | 56 | }
|
0 commit comments