meta-edc 0.3.39__py3-none-any.whl → 1.4.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (637) hide show
  1. meta_ae/action_items.py +38 -27
  2. meta_ae/admin/__init__.py +11 -0
  3. meta_ae/admin/ae_initial_admin.py +5 -2
  4. meta_ae/admin/ae_susar_admin.py +1 -1
  5. meta_ae/admin/death_report_admin.py +1 -1
  6. meta_ae/admin/modeladmin_mixins.py +14 -15
  7. meta_ae/baker_recipes.py +4 -6
  8. meta_ae/choices.py +1 -1
  9. meta_ae/forms/__init__.py +13 -0
  10. meta_ae/forms/death_report_form.py +1 -1
  11. meta_ae/forms/modelform_mixins.py +2 -2
  12. meta_ae/list_data.py +1 -1
  13. meta_ae/migrations/0001_initial.py +27 -27
  14. meta_ae/migrations/0006_aelocalreview_aesponsorreview.py +5 -5
  15. meta_ae/migrations/0017_auto_20221130_2257.py +1 -1
  16. meta_ae/migrations/0022_historicalhospitalization_hospitalization.py +5 -13
  17. meta_ae/migrations/0023_alter_aefollowup_action_identifier_and_more.py +2017 -0
  18. meta_ae/model_mixins/__init__.py +2 -0
  19. meta_ae/model_mixins/ae_review_model_mixin.py +6 -6
  20. meta_ae/model_mixins/death_report_model_mixin.py +3 -3
  21. meta_ae/models/__init__.py +13 -0
  22. meta_ae/models/hospitalization.py +3 -3
  23. meta_ae/pdf_reports/__init__.py +2 -0
  24. meta_ae/templatetags/meta_ae_extras.py +4 -6
  25. meta_analytics/.DS_Store +0 -0
  26. meta_analytics/README.rst +1 -2
  27. meta_analytics/dataframes/__init__.py +27 -0
  28. meta_analytics/dataframes/constants.py +5 -2
  29. meta_analytics/dataframes/get_eos_df.py +16 -4
  30. meta_analytics/dataframes/get_glucose_df.py +166 -0
  31. meta_analytics/dataframes/get_glucose_fbg_df.py +26 -0
  32. meta_analytics/dataframes/get_glucose_fbg_ogtt_df.py +21 -0
  33. meta_analytics/dataframes/get_last_imp_visits_df.py +12 -10
  34. meta_analytics/dataframes/glucose_endpoints/__init__.py +2 -0
  35. meta_analytics/dataframes/glucose_endpoints/endpoint_by_date.py +125 -124
  36. meta_analytics/dataframes/glucose_endpoints/glucose_endpoints_by_date.py +111 -235
  37. meta_analytics/dataframes/screening/__init__.py +2 -0
  38. meta_analytics/dataframes/screening/get_glucose_tested_only_df.py +1 -2
  39. meta_analytics/dataframes/screening/get_screening_df.py +9 -15
  40. meta_analytics/dataframes/utils.py +21 -12
  41. meta_analytics/get_tables.py +1 -2
  42. meta_analytics/tables/__init__.py +2 -0
  43. meta_analytics/tables/enrolled/glucose.py +2 -1
  44. meta_analytics/utils.py +81 -0
  45. meta_auth/auths.py +1 -1
  46. meta_consent/action_items.py +22 -3
  47. meta_consent/admin/__init__.py +7 -0
  48. meta_consent/admin/actions/__init__.py +2 -0
  49. meta_consent/admin/actions/create_missing_prescriptions.py +2 -2
  50. meta_consent/admin/list_filters.py +22 -0
  51. meta_consent/admin/modeladmin_mixins.py +4 -5
  52. meta_consent/admin/subject_consent_v1_ext_admin.py +93 -0
  53. meta_consent/baker_recipes.py +7 -7
  54. meta_consent/consents.py +15 -2
  55. meta_consent/constants.py +1 -0
  56. meta_consent/form_validators/__init__.py +2 -0
  57. meta_consent/forms/__init__.py +8 -0
  58. meta_consent/forms/subject_consent_v1_ext_form.py +47 -0
  59. meta_consent/forms/subject_reconsent_form.py +4 -4
  60. meta_consent/management/commands/create_missing_prescriptions.py +5 -3
  61. meta_consent/migrations/0001_initial.py +9 -9
  62. meta_consent/migrations/0024_historicalsubjectconsentv1.py +3 -8
  63. meta_consent/migrations/0026_historicalsubjectconsentv1ext_subjectconsentv1ext.py +535 -0
  64. meta_consent/migrations/0027_auto_20250111_0344.py +30 -0
  65. meta_consent/migrations/0028_historicalsubjectconsentv1ext_assessment_score_and_more.py +162 -0
  66. meta_consent/migrations/0029_alter_historicalsubjectconsentv1ext_agrees_to_extension_and_more.py +33 -0
  67. meta_consent/migrations/0030_auto_20250120_2114.py +40 -0
  68. meta_consent/migrations/0031_alter_historicalsubjectconsent_guardian_name_and_more.py +124 -0
  69. meta_consent/migrations/0032_alter_historicalsubjectconsent_device_created_and_more.py +678 -0
  70. meta_consent/migrations/0033_historicalsubjectconsentspfq_subjectconsentspfq.py +615 -0
  71. meta_consent/migrations/0034_remove_subjectconsentspfq_site_and_more.py +23 -0
  72. meta_consent/migrations/0035_alter_historicalsubjectconsent_consent_definition_name_and_more.py +43 -0
  73. meta_consent/models/__init__.py +10 -0
  74. meta_consent/models/model_mixins.py +1 -2
  75. meta_consent/models/signals.py +25 -11
  76. meta_consent/models/subject_consent.py +2 -2
  77. meta_consent/models/subject_consent_v1.py +0 -1
  78. meta_consent/models/subject_consent_v1_ext.py +34 -0
  79. meta_consent/models/subject_reconsent.py +4 -4
  80. meta_dashboard/navbars.py +2 -6
  81. meta_dashboard/patterns.py +1 -1
  82. meta_dashboard/templates/meta_dashboard/{bootstrap3/buttons → buttons}/eligibility_button.html +1 -1
  83. meta_dashboard/templates/meta_dashboard/{bootstrap3/buttons → buttons}/screening_button.html +1 -1
  84. meta_dashboard/templates/meta_dashboard/subject/dashboard/sidebar.html +24 -0
  85. meta_dashboard/templates/meta_dashboard/{bootstrap3/subject → subject}/dashboard/top_bar.html +1 -1
  86. meta_dashboard/templates/meta_dashboard/subject/dashboard.html +14 -0
  87. meta_dashboard/templatetags/meta_dashboard_extras.py +9 -14
  88. meta_dashboard/urls.py +5 -5
  89. meta_dashboard/view_utils/__init__.py +13 -0
  90. meta_dashboard/view_utils/subject_screening_button.py +13 -20
  91. meta_dashboard/views/__init__.py +8 -0
  92. meta_dashboard/views/ae/__init__.py +2 -0
  93. meta_dashboard/views/ae/ae_listboard_view.py +1 -1
  94. meta_dashboard/views/ae/death_report_listboard_view.py +1 -1
  95. meta_dashboard/views/screening/__init__.py +2 -0
  96. meta_dashboard/views/screening/listboard_view.py +2 -3
  97. meta_dashboard/views/subject/__init__.py +2 -0
  98. meta_dashboard/views/subject/dashboard/__init__.py +2 -0
  99. meta_dashboard/views/subject/dashboard/dashboard_view.py +19 -8
  100. meta_dashboard/views/subject/listboard/__init__.py +2 -0
  101. meta_dashboard/views/subject/listboard/listboard_view.py +2 -3
  102. meta_edc/__init__.py +5 -9
  103. meta_edc/admin.py +3 -4
  104. meta_edc/celery.py +2 -2
  105. meta_edc/celery_live.py +19 -0
  106. meta_edc/celery_uat.py +25 -0
  107. meta_edc/management/commands/update_forms_reference.py +16 -14
  108. meta_edc/meta_version.py +2 -2
  109. meta_edc/navbars.py +7 -5
  110. meta_edc/settings/debug.py +13 -4
  111. meta_edc/settings/defaults.py +55 -18
  112. meta_edc/settings/live.py +4 -1
  113. meta_edc/settings/logging.py +9 -4
  114. meta_edc/settings/minimal.py +4 -5
  115. meta_edc/settings/uat.py +3 -1
  116. meta_edc/templates/meta_edc/{bootstrap3/base.html → base.html} +1 -1
  117. meta_edc/templates/meta_edc/{bootstrap3/home.html → home.html} +2 -2
  118. meta_edc/urls.py +3 -1
  119. meta_edc/utils.py +3 -1
  120. meta_edc/views/__init__.py +2 -0
  121. meta_edc/views/home_view.py +1 -2
  122. meta_edc-1.4.0.dist-info/METADATA +174 -0
  123. {meta_edc-0.3.39.dist-info → meta_edc-1.4.0.dist-info}/RECORD +578 -586
  124. meta_edc-1.4.0.dist-info/WHEEL +4 -0
  125. meta_labs/list_data.py +2 -2
  126. meta_labs/reportables.py +80 -11
  127. meta_lists/list_data.py +13 -4
  128. meta_lists/migrations/0008_auto_20200528_1517.py +2 -2
  129. meta_lists/migrations/0019_auto_20250128_0143.py +48 -0
  130. meta_lists/migrations/0020_alter_abnormalfootappearanceobservations_extra_value_and_more.py +404 -0
  131. meta_pharmacy/admin/__init__.py +5 -0
  132. meta_pharmacy/admin/rx_admin.py +1 -0
  133. meta_pharmacy/admin/substitutions_admin.py +3 -3
  134. meta_pharmacy/constants.py +1 -1
  135. meta_pharmacy/forms/__init__.py +2 -0
  136. meta_pharmacy/forms/rx_form.py +0 -1
  137. meta_pharmacy/forms/substitutions_form.py +6 -4
  138. meta_pharmacy/labels/__init__.py +5 -2
  139. meta_pharmacy/labels/draw_label_for_subject_with_barcode.py +4 -1
  140. meta_pharmacy/labels/draw_label_with_test_data.py +2 -2
  141. meta_pharmacy/labels/label_data.py +1 -2
  142. meta_pharmacy/labels/print_sheets.py +4 -6
  143. meta_pharmacy/management/commands/update_initial_pharmacy_data.py +4 -3
  144. meta_pharmacy/migrations/0002_initial.py +7 -20
  145. meta_pharmacy/migrations/0003_auto_20240909_2335.py +3 -2
  146. meta_pharmacy/migrations/0006_lotnumber_label.py +5 -14
  147. meta_pharmacy/migrations/0008_remove_lotnumber_medication_and_more.py +5 -6
  148. meta_pharmacy/migrations/0010_alter_historicallabeldata_device_created_and_more.py +382 -0
  149. meta_pharmacy/models/__init__.py +7 -0
  150. meta_pharmacy/models/label_data.py +4 -5
  151. meta_pharmacy/models/rx_label.py +0 -1
  152. meta_pharmacy/models/substitutions.py +4 -4
  153. meta_pharmacy/prepare_meta_pharmacy.py +1 -1
  154. meta_pharmacy/utils/__init__.py +2 -0
  155. meta_pharmacy/utils/update_initial_pharmacy_data.py +1 -1
  156. meta_prn/action_items.py +44 -45
  157. meta_prn/admin/__init__.py +16 -0
  158. meta_prn/admin/dm_referral_admin.py +2 -1
  159. meta_prn/admin/end_of_study_admin.py +26 -15
  160. meta_prn/admin/loss_to_followup_admin.py +3 -2
  161. meta_prn/admin/off_study_medication_admin.py +5 -6
  162. meta_prn/admin/offschedule_admin.py +12 -11
  163. meta_prn/admin/offschedule_dm_referral_admin.py +11 -10
  164. meta_prn/admin/offschedule_postnatal_admin.py +15 -7
  165. meta_prn/admin/offschedule_pregnancy_admin.py +18 -9
  166. meta_prn/admin/onschedule_admin.py +7 -8
  167. meta_prn/admin/onschedule_dm_referral_admin.py +11 -12
  168. meta_prn/admin/pregnancy_notification_admin.py +5 -6
  169. meta_prn/admin/protocol_incident_admin.py +1 -1
  170. meta_prn/admin/subject_transfer_admin.py +1 -1
  171. meta_prn/baker_recipes.py +10 -10
  172. meta_prn/choices.py +11 -7
  173. meta_prn/constants.py +1 -0
  174. meta_prn/form_validators/__init__.py +5 -0
  175. meta_prn/form_validators/end_of_study.py +65 -20
  176. meta_prn/form_validators/protocol_incident.py +1 -1
  177. meta_prn/forms/__init__.py +13 -0
  178. meta_prn/forms/dm_referral_form.py +2 -8
  179. meta_prn/forms/end_of_study_form.py +1 -1
  180. meta_prn/forms/loss_to_followup_form.py +1 -1
  181. meta_prn/forms/off_study_medication_form.py +2 -2
  182. meta_prn/forms/offschedule_form.py +25 -0
  183. meta_prn/forms/pregnancy_notification_form.py +15 -17
  184. meta_prn/list_data.py +3 -3
  185. meta_prn/migrations/0001_initial.py +25 -25
  186. meta_prn/migrations/0017_auto_20220307_1929.py +5 -5
  187. meta_prn/migrations/0018_auto_20220309_2106.py +9 -9
  188. meta_prn/migrations/0021_auto_20220316_2147.py +13 -13
  189. meta_prn/migrations/0022_auto_20220318_0133.py +9 -9
  190. meta_prn/migrations/0032_historicalegfrnotification_egfrnotification.py +5 -13
  191. meta_prn/migrations/0034_auto_20220630_1110.py +1 -1
  192. meta_prn/migrations/0035_auto_20220630_1140.py +1 -1
  193. meta_prn/migrations/0038_alter_endofstudy_delivery_date_and_more.py +5 -13
  194. meta_prn/migrations/0041_endofstudy_transfer_date_and_more.py +5 -13
  195. meta_prn/migrations/0057_historicalonscheduledmreferral_and_more.py +13 -38
  196. meta_prn/migrations/0060_alter_onschedule_managers_and_more.py +55 -0
  197. meta_prn/migrations/0061_auto_20250115_2025.py +56 -0
  198. meta_prn/migrations/0062_alter_endofstudy_offstudy_reason_and_more.py +72 -0
  199. meta_prn/migrations/0063_historicaloffstudymedication_singleton_field_and_more.py +37 -0
  200. meta_prn/migrations/0064_auto_20250602_2143.py +18 -0
  201. meta_prn/migrations/0065_alter_historicaloffstudymedication_subject_identifier_and_more.py +23 -0
  202. meta_prn/migrations/0066_alter_historicallosstofollowup_subject_identifier_and_more.py +23 -0
  203. meta_prn/migrations/0067_alter_offschedule_managers_and_more.py +2557 -0
  204. meta_prn/migrations/0068_alter_dmreferral_referral_note_and_more.py +235 -0
  205. meta_prn/migrations/0069_alter_historicaloffstudymedication_singleton_field_and_more.py +37 -0
  206. meta_prn/models/__init__.py +20 -0
  207. meta_prn/models/dm_referral.py +2 -2
  208. meta_prn/models/end_of_study.py +28 -23
  209. meta_prn/models/loss_to_followup.py +8 -10
  210. meta_prn/models/off_study_medication.py +7 -4
  211. meta_prn/models/offschedule.py +4 -4
  212. meta_prn/models/pregnancy_notification.py +3 -5
  213. meta_prn/models/protocol_incident.py +5 -2
  214. meta_prn/models/signals.py +16 -14
  215. meta_prn/models/subject_transfer.py +7 -0
  216. meta_prn/templates/meta_prn/eos/additional_instructions.html +3 -0
  217. meta_prn/templates/meta_prn/offschedule/additional_instructions.html +2 -0
  218. meta_rando/migrations/0001_initial.py +5 -5
  219. meta_rando/migrations/0006_alter_historicalrandomizationlist_allocated_user_and_more.py +130 -0
  220. meta_rando/migrations/0007_spfqlist.py +197 -0
  221. meta_rando/migrations/0008_delete_spfqlist.py +16 -0
  222. meta_rando/models/__init__.py +1 -0
  223. meta_rando/{models.py → models/randomization_list.py} +3 -3
  224. meta_rando/randomizers.py +2 -2
  225. meta_reports/__init__.py +2 -0
  226. meta_reports/admin/__init__.py +16 -0
  227. meta_reports/admin/dbviews/__init__.py +13 -0
  228. meta_reports/admin/dbviews/glucose_summary_admin.py +7 -7
  229. meta_reports/admin/dbviews/imp_substitutions_admin.py +14 -13
  230. meta_reports/admin/dbviews/missing_screening_ogtt_admin/__init__.py +5 -0
  231. meta_reports/admin/dbviews/missing_screening_ogtt_admin/note_model_admin.py +27 -3
  232. meta_reports/admin/dbviews/missing_screening_ogtt_admin/unmanaged_model_admin.py +7 -7
  233. meta_reports/admin/dbviews/on_study_missing_lab_values_admin/__init__.py +2 -0
  234. meta_reports/admin/dbviews/on_study_missing_lab_values_admin/unmanaged_model_admin.py +0 -3
  235. meta_reports/admin/dbviews/on_study_missing_values_admin/__init__.py +2 -0
  236. meta_reports/admin/dbviews/on_study_missing_values_admin/unmanaged_model_admin.py +0 -1
  237. meta_reports/admin/dbviews/patient_history_missing_baseline_cd4_admin.py +9 -9
  238. meta_reports/admin/dbviews/unattended_three_in_row2_admin.py +6 -6
  239. meta_reports/admin/dbviews/unattended_three_in_row_admin.py +5 -5
  240. meta_reports/admin/dbviews/unattended_two_in_row_admin.py +5 -5
  241. meta_reports/admin/endpoints_admin.py +1 -1
  242. meta_reports/admin/endpoints_all_admin.py +0 -1
  243. meta_reports/admin/last_imp_refill_admin.py +33 -36
  244. meta_reports/admin/list_filters.py +3 -3
  245. meta_reports/admin/modeladmin_mixins.py +10 -17
  246. meta_reports/death_report.py +2 -2
  247. meta_reports/forms/__init__.py +2 -0
  248. meta_reports/forms/missing_ogtt_note_form.py +3 -4
  249. meta_reports/management/commands/generate_endpoints.py +5 -4
  250. meta_reports/migrations/0035_historicalmissingogttnote_missingogttnote.py +5 -14
  251. meta_reports/migrations/0054_auto_20250422_2003.py +81 -0
  252. meta_reports/migrations/0055_alter_glucosesummary_table.py +17 -0
  253. meta_reports/migrations/0056_auto_20250422_2214.py +54 -0
  254. meta_reports/migrations/0057_auto_20250422_2224.py +54 -0
  255. meta_reports/migrations/0058_auto_20250422_2232.py +54 -0
  256. meta_reports/migrations/0059_alter_endpoints_created_and_more.py +161 -0
  257. meta_reports/migrations/0060_auto_20250926_0242.py +366 -0
  258. meta_reports/migrations/0061_auto_20251004_0043.py +21 -0
  259. meta_reports/migrations/0062_auto_20251004_0106.py +21 -0
  260. meta_reports/models/__init__.py +17 -0
  261. meta_reports/models/dbviews/__init__.py +14 -0
  262. meta_reports/models/dbviews/glucose_summary/__init__.py +2 -0
  263. meta_reports/models/dbviews/glucose_summary/unmanaged_model.py +15 -3
  264. meta_reports/models/dbviews/glucose_summary/view_definition.py +8 -5
  265. meta_reports/models/dbviews/imp_substitutions/__init__.py +2 -0
  266. meta_reports/models/dbviews/imp_substitutions/unmanaged_model.py +1 -2
  267. meta_reports/models/dbviews/imp_substitutions/view_definition.py +1 -1
  268. meta_reports/models/dbviews/missing_screening_ogtt/__init__.py +2 -0
  269. meta_reports/models/dbviews/missing_screening_ogtt/note_model.py +2 -2
  270. meta_reports/models/dbviews/missing_screening_ogtt/unmanaged_model.py +4 -3
  271. meta_reports/models/dbviews/on_study_missing_lab_values/__init__.py +2 -0
  272. meta_reports/models/dbviews/on_study_missing_lab_values/qa_cases.py +13 -11
  273. meta_reports/models/dbviews/on_study_missing_lab_values/unmanged_model.py +0 -1
  274. meta_reports/models/dbviews/on_study_missing_values/__init__.py +2 -0
  275. meta_reports/models/dbviews/on_study_missing_values/qa_cases.py +19 -1
  276. meta_reports/models/dbviews/on_study_missing_values/unmanged_model.py +0 -1
  277. meta_reports/models/dbviews/patient_history_missing_baseline_cd4/__init__.py +2 -0
  278. meta_reports/models/dbviews/patient_history_missing_baseline_cd4/unmanaged_model.py +0 -1
  279. meta_reports/models/dbviews/unattended_three_in_row/__init__.py +2 -0
  280. meta_reports/models/dbviews/unattended_three_in_row/unmanaged_model.py +0 -1
  281. meta_reports/models/dbviews/unattended_three_in_row2/__init__.py +2 -0
  282. meta_reports/models/dbviews/unattended_three_in_row2/unmanaged_model.py +0 -1
  283. meta_reports/models/dbviews/unattended_two_in_row/__init__.py +2 -0
  284. meta_reports/models/dbviews/unattended_two_in_row/unmanaged_model.py +0 -1
  285. meta_reports/models/endpoints.py +8 -4
  286. meta_reports/models/last_imp_refill.py +2 -3
  287. meta_reports/pdf_report.py +2 -2
  288. meta_reports/tasks.py +4 -3
  289. meta_reports/templates/meta_reports/columns/subject_identifier_column.html +1 -1
  290. meta_reports/templates/meta_reports/endpoints_all_change_list_note.html +1 -1
  291. meta_reports/templates/meta_reports/endpoints_change_list_note.html +1 -1
  292. meta_reports/templates/meta_reports/last_imp_refill/changelist_note.html +13 -0
  293. meta_screening/admin/__init__.py +8 -0
  294. meta_screening/admin/fieldsets.py +13 -15
  295. meta_screening/admin/list_filters.py +7 -5
  296. meta_screening/admin/screening_part_one_admin.py +1 -3
  297. meta_screening/admin/screening_part_three_admin.py +2 -3
  298. meta_screening/admin/screening_part_two_admin.py +7 -10
  299. meta_screening/admin/subject_refusal_admin.py +5 -3
  300. meta_screening/admin/subject_screening_admin.py +21 -10
  301. meta_screening/baker_recipes.py +18 -10
  302. meta_screening/calculators.py +1 -1
  303. meta_screening/choices.py +1 -1
  304. meta_screening/constants.py +1 -1
  305. meta_screening/eligibility/__init__.py +9 -0
  306. meta_screening/eligibility/eligibility.py +21 -14
  307. meta_screening/eligibility/eligibility_part_one.py +1 -1
  308. meta_screening/eligibility/eligibility_part_three/__init__.py +2 -0
  309. meta_screening/eligibility/eligibility_part_three/base_eligibility_part_three.py +68 -49
  310. meta_screening/eligibility/eligibility_part_three/eligibility_part_three_phase_three.py +14 -15
  311. meta_screening/eligibility/eligibility_part_two.py +1 -1
  312. meta_screening/form_validators/__init__.py +8 -0
  313. meta_screening/form_validators/screening_part_one.py +1 -1
  314. meta_screening/form_validators/screening_part_three.py +6 -2
  315. meta_screening/form_validators/screening_part_two.py +1 -1
  316. meta_screening/form_validators/subject_refusal.py +1 -1
  317. meta_screening/forms/__init__.py +20 -0
  318. meta_screening/forms/field_lists.py +16 -18
  319. meta_screening/forms/screening_part_one_form.py +2 -2
  320. meta_screening/forms/screening_part_three_form.py +5 -3
  321. meta_screening/forms/screening_part_two_form.py +1 -5
  322. meta_screening/forms/subject_refusal_form.py +0 -4
  323. meta_screening/forms/subject_screening_form.py +0 -4
  324. meta_screening/migrations/0001_initial.py +15 -15
  325. meta_screening/migrations/0010_auto_20191106_0828.py +5 -5
  326. meta_screening/migrations/0012_auto_20191107_0427.py +1 -1
  327. meta_screening/migrations/0068_alter_historicalscreeningpartone_acute_condition_and_more.py +1579 -0
  328. meta_screening/model_mixins/__init__.py +8 -0
  329. meta_screening/model_mixins/calculated_model_mixin.py +2 -2
  330. meta_screening/model_mixins/creatinine_fields_model_mixin.py +1 -1
  331. meta_screening/model_mixins/eligibility_model_mixin.py +6 -4
  332. meta_screening/model_mixins/part_one_fields_model_mixin.py +16 -19
  333. meta_screening/model_mixins/part_three_fields_model_mixin.py +6 -7
  334. meta_screening/model_mixins/part_two_fields_model_mixin.py +19 -17
  335. meta_screening/models/__init__.py +9 -0
  336. meta_screening/models/icp_referral.py +5 -5
  337. meta_screening/models/proxy_models.py +1 -1
  338. meta_screening/models/signals.py +10 -11
  339. meta_screening/models/subject_refusal.py +1 -1
  340. meta_screening/models/subject_screening.py +2 -4
  341. meta_subject/action_items.py +18 -14
  342. meta_subject/admin/__init__.py +42 -0
  343. meta_subject/admin/birth_outcome_admin.py +7 -9
  344. meta_subject/admin/blood_results/__init__.py +9 -0
  345. meta_subject/admin/blood_results/blood_results_fbc_admin.py +1 -1
  346. meta_subject/admin/blood_results/blood_results_hba1c_admin.py +1 -1
  347. meta_subject/admin/blood_results/blood_results_ins_admin.py +1 -1
  348. meta_subject/admin/blood_results/blood_results_lft_admin.py +1 -1
  349. meta_subject/admin/blood_results/blood_results_lipids_admin.py +1 -1
  350. meta_subject/admin/blood_results/blood_results_rft_admin.py +3 -5
  351. meta_subject/admin/complications_glycemia_admin.py +1 -1
  352. meta_subject/admin/delivery_admin.py +8 -11
  353. meta_subject/admin/diabetes/__init__.py +2 -0
  354. meta_subject/admin/diabetes/dm_endpoint_admin.py +2 -2
  355. meta_subject/admin/diabetes/dm_followup_admin.py +3 -2
  356. meta_subject/admin/egfr_drop_notification_admin.py +1 -1
  357. meta_subject/admin/fields.py +5 -5
  358. meta_subject/admin/fieldsets.py +5 -5
  359. meta_subject/admin/followup_examination_admin.py +11 -9
  360. meta_subject/admin/followup_vitals_admin.py +31 -6
  361. meta_subject/admin/glucose_admin.py +4 -8
  362. meta_subject/admin/glucose_fbg_admin.py +18 -11
  363. meta_subject/admin/health_economics/__init__.py +2 -0
  364. meta_subject/admin/health_economics/health_economics_simple_admin.py +1 -1
  365. meta_subject/admin/health_economics/health_economics_update_admin.py +1 -1
  366. meta_subject/admin/hepatitis_test_admin.py +1 -1
  367. meta_subject/admin/hiv_exit_review_admin.py +55 -0
  368. meta_subject/admin/list_filters.py +5 -5
  369. meta_subject/admin/mnsi_admin.py +7 -5
  370. meta_subject/admin/next_appointment_admin.py +19 -0
  371. meta_subject/admin/other_arv_regimens_admin.py +3 -3
  372. meta_subject/admin/patient_history_admin.py +4 -4
  373. meta_subject/admin/physical_exam_admin.py +1 -1
  374. meta_subject/admin/pregnancy_update_admin.py +1 -1
  375. meta_subject/admin/study_medication_admin.py +8 -15
  376. meta_subject/admin/subject_requisition_admin.py +2 -2
  377. meta_subject/admin/subject_visit_admin.py +1 -1
  378. meta_subject/admin/subject_visit_missed_admin.py +1 -1
  379. meta_subject/admin/urine_dipstick_test_admin.py +1 -1
  380. meta_subject/admin/urine_pregnancy_admin.py +1 -1
  381. meta_subject/baker_recipes.py +15 -15
  382. meta_subject/choices.py +4 -3
  383. meta_subject/form_validators/__init__.py +15 -0
  384. meta_subject/form_validators/delivery_form_validator.py +3 -3
  385. meta_subject/form_validators/dm_endpoint_form_validator.py +3 -1
  386. meta_subject/form_validators/dm_followup_form_validator.py +8 -7
  387. meta_subject/form_validators/egfr_drop_notification_form_validator.py +1 -1
  388. meta_subject/form_validators/followup_examination_form_validator.py +1 -1
  389. meta_subject/form_validators/glucose_fbg_form_validator.py +76 -0
  390. meta_subject/form_validators/glucose_form_validator.py +10 -67
  391. meta_subject/form_validators/hiv_exit_review_form_validator.py +18 -0
  392. meta_subject/form_validators/mixins.py +95 -0
  393. meta_subject/forms/__init__.py +44 -0
  394. meta_subject/forms/blood_results/__init__.py +9 -0
  395. meta_subject/forms/blood_results/blood_results_hba1c_form.py +1 -1
  396. meta_subject/forms/blood_results/blood_results_rft_form.py +60 -4
  397. meta_subject/forms/delivery_form.py +2 -0
  398. meta_subject/forms/diabetes/__init__.py +2 -0
  399. meta_subject/forms/diabetes/dm_followup_form.py +2 -2
  400. meta_subject/forms/followup_vitals_form.py +27 -1
  401. meta_subject/forms/glucose_fbg_form.py +1 -46
  402. meta_subject/forms/health_economics/__init__.py +2 -0
  403. meta_subject/forms/hepatitis_test_form.py +1 -1
  404. meta_subject/forms/hiv_exit_review_form.py +13 -0
  405. meta_subject/forms/mixins.py +1 -1
  406. meta_subject/forms/next_appointment_form.py +36 -0
  407. meta_subject/forms/other_arv_regimens_form.py +1 -1
  408. meta_subject/forms/patient_history_form.py +1 -1
  409. meta_subject/forms/physical_exam_form.py +1 -1
  410. meta_subject/forms/pregnancy_update_form.py +1 -1
  411. meta_subject/forms/slider_widget.py +1 -1
  412. meta_subject/forms/study_medication_form.py +18 -12
  413. meta_subject/forms/subject_requisition_form.py +1 -1
  414. meta_subject/forms/subject_visit_missed_form.py +1 -1
  415. meta_subject/forms/urine_dipstick_test_form.py +1 -1
  416. meta_subject/forms/urine_pregnancy_form.py +1 -1
  417. meta_subject/management/commands/create_missing_refills.py +3 -3
  418. meta_subject/management/commands/create_missing_rx.py +2 -2
  419. meta_subject/management/commands/missed.py +20 -23
  420. meta_subject/metadata_rules/__init__.py +2 -0
  421. meta_subject/metadata_rules/metadata_rules.py +14 -0
  422. meta_subject/metadata_rules/predicates.py +44 -25
  423. meta_subject/migrations/0001_initial.py +61 -61
  424. meta_subject/migrations/0002_auto_20191021_0353.py +5 -5
  425. meta_subject/migrations/0012_auto_20200118_2334.py +5 -5
  426. meta_subject/migrations/0014_auto_20200120_1622.py +5 -5
  427. meta_subject/migrations/0018_coronakap_historicalcoronakap.py +5 -5
  428. meta_subject/migrations/0033_auto_20200516_2356.py +5 -5
  429. meta_subject/migrations/0038_auto_20200520_0020.py +5 -5
  430. meta_subject/migrations/0040_auto_20200527_2155.py +1 -1
  431. meta_subject/migrations/0045_auto_20200530_1801.py +1 -1
  432. meta_subject/migrations/0051_auto_20200617_2117.py +5 -5
  433. meta_subject/migrations/0063_auto_20210715_0337.py +5 -5
  434. meta_subject/migrations/0066_auto_20210721_0335.py +9 -9
  435. meta_subject/migrations/0067_auto_20210726_0340.py +5 -5
  436. meta_subject/migrations/0068_auto_20210728_1809.py +5 -5
  437. meta_subject/migrations/0072_auto_20210805_1545.py +7 -7
  438. meta_subject/migrations/0073_auto_20210809_0055.py +5 -5
  439. meta_subject/migrations/0077_auto_20210809_2323.py +3 -3
  440. meta_subject/migrations/0082_auto_20210823_1612.py +3 -3
  441. meta_subject/migrations/0083_auto_20210823_1620.py +3 -3
  442. meta_subject/migrations/0088_auto_20210924_0027.py +5 -5
  443. meta_subject/migrations/0090_auto_20210924_0424.py +5 -5
  444. meta_subject/migrations/0093_auto_20211117_0352.py +5 -5
  445. meta_subject/migrations/0095_auto_20220128_1719.py +5 -5
  446. meta_subject/migrations/0098_auto_20220309_2106.py +5 -5
  447. meta_subject/migrations/0101_auto_20220316_2147.py +13 -13
  448. meta_subject/migrations/0107_auto_20220415_0043.py +1 -1
  449. meta_subject/migrations/0115_historicalegfrnotification_egfrnotification.py +5 -13
  450. meta_subject/migrations/0128_auto_20220720_0055.py +1 -1
  451. meta_subject/migrations/0131_auto_20220722_0411.py +1 -1
  452. meta_subject/migrations/0135_auto_20220722_2212.py +2 -1
  453. meta_subject/migrations/0164_dmreferralfollowup_historicaldmreferralfollowup.py +5 -5
  454. meta_subject/migrations/0172_remove_historicalbloodresultsglu_action_item_and_more.py +1 -2
  455. meta_subject/migrations/0177_alter_bloodresultslft_alp_value_and_more.py +1 -2
  456. meta_subject/migrations/0178_historicalhealtheconomicsupdate_and_more.py +5 -14
  457. meta_subject/migrations/0186_healtheconomicsupdate_singleton_field_and_more.py +1 -2
  458. meta_subject/migrations/0187_dmdiagnosis_historicaldmdiagnosis_dmdxresult_and_more.py +5 -14
  459. meta_subject/migrations/0188_historicaldmdxresult_dmdxresult.py +5 -14
  460. meta_subject/migrations/0199_auto_20240516_0247.py +1 -1
  461. meta_subject/migrations/0209_remove_historicaldmdxresult_dm_diagnosis_and_more.py +1 -2
  462. meta_subject/migrations/0212_auto_20240827_2222.py +1 -1
  463. meta_subject/migrations/0216_historicalnextappointment_nextappointment.py +553 -0
  464. meta_subject/migrations/0217_alter_historicalnextappointment_appt_datetime_and_more.py +42 -0
  465. meta_subject/migrations/0218_alter_historicalnextappointment_appt_date_and_more.py +53 -0
  466. meta_subject/migrations/0219_remove_historicalnextappointment_allow_create_interim_and_more.py +92 -0
  467. meta_subject/migrations/0220_historicalbloodresultsgludummy_bloodresultsgludummy.py +825 -0
  468. meta_subject/migrations/0221_auto_20250402_1913.py +42 -0
  469. meta_subject/migrations/0222_alter_historicalstudymedication_stock_codes_and_more.py +46 -0
  470. meta_subject/migrations/0223_bloodresultsfbc_errors_bloodresultsgludummy_errors_and_more.py +83 -0
  471. meta_subject/migrations/0224_bloodresultsfbc_abnormal_summary_and_more.py +153 -0
  472. meta_subject/migrations/0225_followupvitals_waist_circumference_and_more.py +46 -0
  473. meta_subject/migrations/0226_followupvitals_waist_circumference_comment_and_more.py +97 -0
  474. meta_subject/migrations/0227_alter_followupvitals_waist_circumference_comment_and_more.py +97 -0
  475. meta_subject/migrations/0228_bloodresultshba1c_hba1c_datetime_and_more.py +2518 -0
  476. meta_subject/migrations/0229_alter_glucosefbg_consent_model_and_more.py +1918 -0
  477. meta_subject/migrations/0230_alter_historicaldelivery_action_identifier_and_more.py +1733 -0
  478. meta_subject/migrations/0231_alter_historicalmedicationadherence_consent_model_and_more.py +2054 -0
  479. meta_subject/migrations/0232_alter_patienthistory_concomitant_conditions_and_more.py +1170 -0
  480. meta_subject/migrations/0233_historicalspfq_spfq.py +1066 -0
  481. meta_subject/migrations/0234_remove_spfq_site_remove_spfq_subject_visit_and_more.py +27 -0
  482. meta_subject/migrations/0235_glucosefbg_endpoint_today_and_more.py +606 -0
  483. meta_subject/migrations/0236_alter_historicalhivexitreview_other_current_arv_regimen_and_more.py +58 -0
  484. meta_subject/migrations/0237_historicalhivexitreview_singleton_field_and_more.py +68 -0
  485. meta_subject/migrations/0238_historicalhivexitreview_available_and_more.py +88 -0
  486. meta_subject/model_mixins/__init__.py +10 -0
  487. meta_subject/model_mixins/arv_history_model_mixin.py +3 -44
  488. meta_subject/model_mixins/arv_review_model_mixin.py +53 -0
  489. meta_subject/model_mixins/search_slug_model_mixin.py +1 -2
  490. meta_subject/model_mixins/vitals_fields_model_mixin.py +33 -0
  491. meta_subject/models/__init__.py +52 -0
  492. meta_subject/models/birth_outcomes.py +3 -3
  493. meta_subject/models/blood_results/__init__.py +11 -0
  494. meta_subject/models/blood_results/blood_results_glu.py +29 -0
  495. meta_subject/models/blood_results/blood_results_hba1c.py +0 -1
  496. meta_subject/models/blood_results/blood_results_ins.py +0 -1
  497. meta_subject/models/blood_results/blood_results_lft.py +0 -1
  498. meta_subject/models/delivery.py +4 -6
  499. meta_subject/models/diabetes/__init__.py +2 -0
  500. meta_subject/models/diabetes/dm_endpoint.py +5 -5
  501. meta_subject/models/diabetes/dm_followup.py +7 -8
  502. meta_subject/models/diet_and_lifestyle.py +2 -2
  503. meta_subject/models/followup_examination.py +12 -14
  504. meta_subject/models/glucose.py +5 -5
  505. meta_subject/models/glucose_fbg.py +17 -4
  506. meta_subject/models/health_economics/__init__.py +2 -0
  507. meta_subject/models/health_economics/health_economics.py +8 -8
  508. meta_subject/models/health_economics/health_economics_simple.py +2 -2
  509. meta_subject/models/health_economics/health_economics_update.py +3 -2
  510. meta_subject/models/hepatitis_test.py +2 -2
  511. meta_subject/models/hiv_exit_review.py +44 -0
  512. meta_subject/models/next_appointment.py +15 -0
  513. meta_subject/models/other_arv_regimens_detail.py +1 -1
  514. meta_subject/models/patient_history.py +6 -7
  515. meta_subject/models/physical_exam.py +2 -2
  516. meta_subject/models/pregnancy_update.py +1 -1
  517. meta_subject/models/signals.py +15 -13
  518. meta_subject/models/subject_visit.py +2 -2
  519. meta_subject/models/todo.txt +1 -1
  520. meta_subject/models/urine_dipstick_test.py +2 -2
  521. meta_subject/models/urine_pregnancy.py +1 -1
  522. meta_subject/static/meta_subject/slider.css +1 -1
  523. meta_subject/templates/meta_subject/endpoint_review_instructions.html +1 -1
  524. meta_subject/templates/meta_subject/widgets/slider.html +0 -1
  525. meta_visit_schedule/visit_schedules/__init__.py +2 -0
  526. meta_visit_schedule/visit_schedules/phase_three/__init__.py +2 -0
  527. meta_visit_schedule/visit_schedules/phase_three/crfs.py +34 -1
  528. meta_visit_schedule/visit_schedules/phase_three/schedule.py +4 -4
  529. meta_visit_schedule/visit_schedules/phase_three/schedule_dm_referral.py +1 -2
  530. meta_visit_schedule/visit_schedules/phase_three/schedule_pregnancy.py +2 -3
  531. meta_ae/tests/holidays.csv +0 -15
  532. meta_ae/tests/tests/test_actions.py +0 -127
  533. meta_ae/tests/urls.py +0 -10
  534. meta_analytics/dataframes/enrolled/__init__.py +0 -1
  535. meta_analytics/dataframes/enrolled/get_glucose_df.py +0 -122
  536. meta_analytics/tests/__init__.py +0 -0
  537. meta_analytics/tests/test_endpoints_by_date.py +0 -94
  538. meta_consent/tests/__init__.py +0 -0
  539. meta_consent/tests/holidays.csv +0 -15
  540. meta_consent/tests/tests/__init__.py +0 -0
  541. meta_consent/tests/tests/test_form_validators.py +0 -110
  542. meta_consent/tests/tests/test_subject_consent.py +0 -10
  543. meta_consent/tests/urls.py +0 -17
  544. meta_dashboard/templates/meta_dashboard/bootstrap3/subject/dashboard.html +0 -11
  545. meta_dashboard/tests/__init__.py +0 -0
  546. meta_dashboard/tests/admin.py +0 -22
  547. meta_dashboard/tests/holidays.csv +0 -15
  548. meta_dashboard/tests/tests/__init__.py +0 -0
  549. meta_dashboard/tests/urls.py +0 -55
  550. meta_edc/tests/__init__.py +0 -0
  551. meta_edc/tests/tests/__init__.py +0 -0
  552. meta_edc/tests/tests/test_endpoints.py +0 -554
  553. meta_edc-0.3.39.dist-info/AUTHORS +0 -0
  554. meta_edc-0.3.39.dist-info/METADATA +0 -766
  555. meta_edc-0.3.39.dist-info/WHEEL +0 -5
  556. meta_edc-0.3.39.dist-info/top_level.txt +0 -20
  557. meta_labs/tests/__init__.py +0 -0
  558. meta_labs/tests/test_labs.py +0 -27
  559. meta_labs/tests/test_reportables.py +0 -16
  560. meta_labs/tests/urls.py +0 -4
  561. meta_lists/tests/__init__.py +0 -0
  562. meta_lists/tests/test_lists.py +0 -8
  563. meta_pharmacy/admin/actions.py +0 -38
  564. meta_prn/tests/__init__.py +0 -0
  565. meta_prn/tests/tests/__init__.py +0 -0
  566. meta_prn/tests/tests/test_actions.py +0 -97
  567. meta_prn/tests/tests/test_dm_referral.py +0 -206
  568. meta_prn/tests/tests/test_manager_order.py +0 -14
  569. meta_prn/tests/tests/test_pregnancy_notification.py +0 -93
  570. meta_prn/tests/urls.py +0 -10
  571. meta_rando/tests/__init__.py +0 -0
  572. meta_rando/tests/tests/__init__.py +0 -0
  573. meta_rando/tests/tests/test_randomizers.py +0 -57
  574. meta_reports/tests/__init__.py +0 -0
  575. meta_reports/tests/test_reports.py +0 -35
  576. meta_reports/tests/test_sql_gen.py +0 -5
  577. meta_reports/tests/urls.py +0 -4
  578. meta_screening/offline_models.py +0 -3
  579. meta_screening/tests/__init__.py +0 -0
  580. meta_screening/tests/holidays.csv +0 -15
  581. meta_screening/tests/meta_test_case_mixin.py +0 -216
  582. meta_screening/tests/options.py +0 -127
  583. meta_screening/tests/tests/__init__.py +0 -0
  584. meta_screening/tests/tests/test_forms.py +0 -397
  585. meta_screening/tests/tests/test_screening_part_one.py +0 -108
  586. meta_screening/tests/tests/test_screening_part_three.py +0 -436
  587. meta_screening/tests/tests/test_screening_part_two.py +0 -84
  588. meta_sites/tests/__init__.py +0 -0
  589. meta_sites/tests/test_sites.py +0 -12
  590. meta_sites/tests/urls.py +0 -4
  591. meta_stats/__init__.py +0 -0
  592. meta_stats/incidence.py +0 -16
  593. meta_stats/models.py +0 -0
  594. meta_stats/tests/__init__.py +0 -0
  595. meta_stats/tests/tests/__init__.py +0 -0
  596. meta_stats/tests/tests/test_incidence.py +0 -10
  597. meta_subject/tests/__init__.py +0 -0
  598. meta_subject/tests/holidays.csv +0 -15
  599. meta_subject/tests/tests/__init__.py +0 -0
  600. meta_subject/tests/tests/test_egfr.py +0 -234
  601. meta_subject/tests/tests/test_fixes.py +0 -64
  602. meta_subject/tests/tests/test_followup.py +0 -52
  603. meta_subject/tests/tests/test_manager_order.py +0 -11
  604. meta_subject/tests/tests/test_medication_adherence.py +0 -75
  605. meta_subject/tests/tests/test_metadata_rules.py +0 -135
  606. meta_subject/tests/tests/test_mnsi.py +0 -317
  607. meta_subject/tests/tests/test_patient_history_form.py +0 -74
  608. meta_subject/tests/tests/test_physical_exam.py +0 -84
  609. meta_subject/tests/tests/test_sf12.py +0 -173
  610. meta_subject/tests/tests/test_study_medication.py +0 -230
  611. meta_subject/tests/urls.py +0 -24
  612. meta_visit_schedule/tests/__init__.py +0 -0
  613. meta_visit_schedule/tests/tests/__init__.py +0 -0
  614. meta_visit_schedule/tests/tests/test_schedule.py +0 -181
  615. meta_visit_schedule/tests/urls.py +0 -4
  616. tests/__init__.py +0 -0
  617. tests/etc/randomization_list.csv +0 -241
  618. tests/etc/randomization_list_phase_three.csv +0 -241
  619. tests/etc/user-aes-local.key +0 -0
  620. tests/etc/user-aes-restricted.key +0 -1
  621. tests/etc/user-rsa-local-private.pem +0 -27
  622. tests/etc/user-rsa-local-public.pem +0 -9
  623. tests/etc/user-rsa-restricted-private.pem +0 -27
  624. tests/etc/user-rsa-restricted-public.pem +0 -9
  625. tests/etc/user-salt-local.key +0 -0
  626. tests/etc/user-salt-restricted.key +0 -0
  627. tests/holidays.csv +0 -15
  628. tests/test_settings.py +0 -186
  629. /meta_ae/templates/meta_ae/{bootstrap3/ae_initial_description.html → aeinitial_description.html} +0 -0
  630. /meta_dashboard/templates/meta_dashboard/{bootstrap3/buttons → buttons}/add_consent_button.html +0 -0
  631. /meta_dashboard/templates/meta_dashboard/{bootstrap3/buttons → buttons}/dashboard_button.html +0 -0
  632. /meta_dashboard/templates/meta_dashboard/{bootstrap3/buttons → buttons}/refusal_button.html +0 -0
  633. /meta_dashboard/templates/meta_dashboard/{bootstrap3/screening → screening}/listboard.html +0 -0
  634. /meta_dashboard/templates/meta_dashboard/{bootstrap3/subject → subject}/listboard.html +0 -0
  635. {meta_edc-0.3.39.dist-info → meta_edc-1.4.0.dist-info/licenses}/LICENSE +0 -0
  636. /meta_ae/tests/__init__.py → /meta_subject/management/__init__py.py +0 -0
  637. /meta_ae/tests/tests/__init__.py → /meta_subject/management/commands/__init__py.py +0 -0
@@ -0,0 +1,1918 @@
1
+ # Generated by Django 5.2.6 on 2025-09-30 00:36
2
+
3
+ import _socket
4
+ import django.core.validators
5
+ import django.db.models.deletion
6
+ import django.utils.timezone
7
+ import django_audit_fields.fields.hostname_modification_field
8
+ import django_audit_fields.fields.userfield
9
+ import django_audit_fields.fields.uuid_auto_field
10
+ import django_revision.revision_field
11
+ import edc_crf.model_mixins.crf_status_model_mixin
12
+ import edc_model.models.fields.initials_field
13
+ import edc_model.validators.date
14
+ import edc_model_fields.fields.other_charfield
15
+ import edc_protocol.validators
16
+ import edc_visit_tracking.managers
17
+ import simple_history.models
18
+ import uuid
19
+ from django.conf import settings
20
+ from django.db import migrations, models
21
+
22
+
23
+ class Migration(migrations.Migration):
24
+ dependencies = [
25
+ ("meta_subject", "0228_bloodresultshba1c_hba1c_datetime_and_more"),
26
+ ("sites", "0002_alter_domain_unique"),
27
+ migrations.swappable_dependency(settings.AUTH_USER_MODEL),
28
+ ]
29
+
30
+ operations = [
31
+ migrations.AlterField(
32
+ model_name="glucosefbg",
33
+ name="consent_model",
34
+ field=models.CharField(blank=True, default="", max_length=50),
35
+ ),
36
+ migrations.AlterField(
37
+ model_name="glucosefbg",
38
+ name="consent_version",
39
+ field=models.CharField(blank=True, default="", max_length=10),
40
+ ),
41
+ migrations.AlterField(
42
+ model_name="glucosefbg",
43
+ name="crf_status_comments",
44
+ field=models.TextField(
45
+ blank=True,
46
+ default="",
47
+ help_text="for example, why some data is still pending",
48
+ verbose_name="Any comments related to status of this CRF",
49
+ ),
50
+ ),
51
+ migrations.AlterField(
52
+ model_name="glucosefbg",
53
+ name="device_created",
54
+ field=models.CharField(
55
+ blank=True, default="", max_length=10, verbose_name="Device created"
56
+ ),
57
+ ),
58
+ migrations.AlterField(
59
+ model_name="glucosefbg",
60
+ name="device_modified",
61
+ field=models.CharField(
62
+ blank=True, default="", max_length=10, verbose_name="Device modified"
63
+ ),
64
+ ),
65
+ migrations.AlterField(
66
+ model_name="glucosefbg",
67
+ name="fbg_not_performed_reason",
68
+ field=models.CharField(
69
+ blank=True,
70
+ default="",
71
+ max_length=150,
72
+ verbose_name="If NO, provide reason",
73
+ ),
74
+ ),
75
+ migrations.AlterField(
76
+ model_name="glucosefbg",
77
+ name="locale_created",
78
+ field=models.CharField(
79
+ blank=True,
80
+ default="",
81
+ help_text="Auto-updated by Modeladmin",
82
+ max_length=10,
83
+ verbose_name="Locale created",
84
+ ),
85
+ ),
86
+ migrations.AlterField(
87
+ model_name="glucosefbg",
88
+ name="locale_modified",
89
+ field=models.CharField(
90
+ blank=True,
91
+ default="",
92
+ help_text="Auto-updated by Modeladmin",
93
+ max_length=10,
94
+ verbose_name="Locale modified",
95
+ ),
96
+ ),
97
+ migrations.AlterField(
98
+ model_name="glucosefbg",
99
+ name="report_datetime",
100
+ field=models.DateTimeField(
101
+ default=django.utils.timezone.now,
102
+ help_text="If reporting today, use today's date/time, otherwise use the date/time this information was reported.",
103
+ validators=[
104
+ edc_protocol.validators.datetime_not_before_study_start,
105
+ edc_model.validators.date.datetime_not_future,
106
+ ],
107
+ verbose_name="Report Date",
108
+ ),
109
+ ),
110
+ migrations.AlterField(
111
+ model_name="glucosefbg",
112
+ name="revision",
113
+ field=django_revision.revision_field.RevisionField(
114
+ blank=True,
115
+ default="",
116
+ editable=False,
117
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
118
+ max_length=75,
119
+ verbose_name="Revision",
120
+ ),
121
+ ),
122
+ migrations.AlterField(
123
+ model_name="healtheconomics",
124
+ name="consent_model",
125
+ field=models.CharField(blank=True, default="", max_length=50),
126
+ ),
127
+ migrations.AlterField(
128
+ model_name="healtheconomics",
129
+ name="consent_version",
130
+ field=models.CharField(blank=True, default="", max_length=10),
131
+ ),
132
+ migrations.AlterField(
133
+ model_name="healtheconomics",
134
+ name="crf_status_comments",
135
+ field=models.TextField(
136
+ blank=True,
137
+ default="",
138
+ help_text="for example, why some data is still pending",
139
+ verbose_name="Any comments related to status of this CRF",
140
+ ),
141
+ ),
142
+ migrations.AlterField(
143
+ model_name="healtheconomics",
144
+ name="device_created",
145
+ field=models.CharField(
146
+ blank=True, default="", max_length=10, verbose_name="Device created"
147
+ ),
148
+ ),
149
+ migrations.AlterField(
150
+ model_name="healtheconomics",
151
+ name="device_modified",
152
+ field=models.CharField(
153
+ blank=True, default="", max_length=10, verbose_name="Device modified"
154
+ ),
155
+ ),
156
+ migrations.AlterField(
157
+ model_name="healtheconomics",
158
+ name="expenditure_other_detail",
159
+ field=models.TextField(
160
+ blank=True, default="", verbose_name="If YES, what was the activity"
161
+ ),
162
+ ),
163
+ migrations.AlterField(
164
+ model_name="healtheconomics",
165
+ name="highest_earner",
166
+ field=models.CharField(
167
+ blank=True,
168
+ default="",
169
+ max_length=50,
170
+ verbose_name="If NO, what is the profession of the person who earns the highest income?",
171
+ ),
172
+ ),
173
+ migrations.AlterField(
174
+ model_name="healtheconomics",
175
+ name="locale_created",
176
+ field=models.CharField(
177
+ blank=True,
178
+ default="",
179
+ help_text="Auto-updated by Modeladmin",
180
+ max_length=10,
181
+ verbose_name="Locale created",
182
+ ),
183
+ ),
184
+ migrations.AlterField(
185
+ model_name="healtheconomics",
186
+ name="locale_modified",
187
+ field=models.CharField(
188
+ blank=True,
189
+ default="",
190
+ help_text="Auto-updated by Modeladmin",
191
+ max_length=10,
192
+ verbose_name="Locale modified",
193
+ ),
194
+ ),
195
+ migrations.AlterField(
196
+ model_name="healtheconomics",
197
+ name="report_datetime",
198
+ field=models.DateTimeField(
199
+ default=django.utils.timezone.now,
200
+ help_text="If reporting today, use today's date/time, otherwise use the date/time this information was reported.",
201
+ validators=[
202
+ edc_protocol.validators.datetime_not_before_study_start,
203
+ edc_model.validators.date.datetime_not_future,
204
+ ],
205
+ verbose_name="Report Date",
206
+ ),
207
+ ),
208
+ migrations.AlterField(
209
+ model_name="healtheconomics",
210
+ name="revision",
211
+ field=django_revision.revision_field.RevisionField(
212
+ blank=True,
213
+ default="",
214
+ editable=False,
215
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
216
+ max_length=75,
217
+ verbose_name="Revision",
218
+ ),
219
+ ),
220
+ migrations.AlterField(
221
+ model_name="healtheconomics",
222
+ name="routine_activities_other",
223
+ field=models.CharField(
224
+ blank=True,
225
+ default="",
226
+ max_length=50,
227
+ verbose_name="If OTHER, please specify",
228
+ ),
229
+ ),
230
+ migrations.AlterField(
231
+ model_name="healtheconomicssimple",
232
+ name="consent_model",
233
+ field=models.CharField(blank=True, default="", max_length=50),
234
+ ),
235
+ migrations.AlterField(
236
+ model_name="healtheconomicssimple",
237
+ name="consent_version",
238
+ field=models.CharField(blank=True, default="", max_length=10),
239
+ ),
240
+ migrations.AlterField(
241
+ model_name="healtheconomicssimple",
242
+ name="crf_status_comments",
243
+ field=models.TextField(
244
+ blank=True,
245
+ default="",
246
+ help_text="for example, why some data is still pending",
247
+ verbose_name="Any comments related to status of this CRF",
248
+ ),
249
+ ),
250
+ migrations.AlterField(
251
+ model_name="healtheconomicssimple",
252
+ name="device_created",
253
+ field=models.CharField(
254
+ blank=True, default="", max_length=10, verbose_name="Device created"
255
+ ),
256
+ ),
257
+ migrations.AlterField(
258
+ model_name="healtheconomicssimple",
259
+ name="device_modified",
260
+ field=models.CharField(
261
+ blank=True, default="", max_length=10, verbose_name="Device modified"
262
+ ),
263
+ ),
264
+ migrations.AlterField(
265
+ model_name="healtheconomicssimple",
266
+ name="education_certificate",
267
+ field=models.CharField(
268
+ choices=[
269
+ ("primary", "Primary Certificate"),
270
+ ("secondary", "Secondary Certificate"),
271
+ ("tertiary", "post-Secondary/Tertiary/College"),
272
+ ("OTHER", "Other, specify ..."),
273
+ ("N/A", "Not applicable, never went to school"),
274
+ ],
275
+ default="",
276
+ max_length=50,
277
+ verbose_name="What is your highest education certificate?",
278
+ ),
279
+ ),
280
+ migrations.AlterField(
281
+ model_name="healtheconomicssimple",
282
+ name="education_certificate_tertiary",
283
+ field=models.CharField(
284
+ blank=True,
285
+ default="",
286
+ max_length=50,
287
+ verbose_name="If your highest education certificate above is `Tertiary`, what type of tertiary certificate?",
288
+ ),
289
+ ),
290
+ migrations.AlterField(
291
+ model_name="healtheconomicssimple",
292
+ name="locale_created",
293
+ field=models.CharField(
294
+ blank=True,
295
+ default="",
296
+ help_text="Auto-updated by Modeladmin",
297
+ max_length=10,
298
+ verbose_name="Locale created",
299
+ ),
300
+ ),
301
+ migrations.AlterField(
302
+ model_name="healtheconomicssimple",
303
+ name="locale_modified",
304
+ field=models.CharField(
305
+ blank=True,
306
+ default="",
307
+ help_text="Auto-updated by Modeladmin",
308
+ max_length=10,
309
+ verbose_name="Locale modified",
310
+ ),
311
+ ),
312
+ migrations.AlterField(
313
+ model_name="healtheconomicssimple",
314
+ name="report_datetime",
315
+ field=models.DateTimeField(
316
+ default=django.utils.timezone.now,
317
+ help_text="If reporting today, use today's date/time, otherwise use the date/time this information was reported.",
318
+ validators=[
319
+ edc_protocol.validators.datetime_not_before_study_start,
320
+ edc_model.validators.date.datetime_not_future,
321
+ ],
322
+ verbose_name="Report Date",
323
+ ),
324
+ ),
325
+ migrations.AlterField(
326
+ model_name="healtheconomicssimple",
327
+ name="revision",
328
+ field=django_revision.revision_field.RevisionField(
329
+ blank=True,
330
+ default="",
331
+ editable=False,
332
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
333
+ max_length=75,
334
+ verbose_name="Revision",
335
+ ),
336
+ ),
337
+ migrations.AlterField(
338
+ model_name="healtheconomicsupdate",
339
+ name="consent_model",
340
+ field=models.CharField(blank=True, default="", max_length=50),
341
+ ),
342
+ migrations.AlterField(
343
+ model_name="healtheconomicsupdate",
344
+ name="consent_version",
345
+ field=models.CharField(blank=True, default="", max_length=10),
346
+ ),
347
+ migrations.AlterField(
348
+ model_name="healtheconomicsupdate",
349
+ name="crf_status_comments",
350
+ field=models.TextField(
351
+ blank=True,
352
+ default="",
353
+ help_text="for example, why some data is still pending",
354
+ verbose_name="Any comments related to status of this CRF",
355
+ ),
356
+ ),
357
+ migrations.AlterField(
358
+ model_name="healtheconomicsupdate",
359
+ name="device_created",
360
+ field=models.CharField(
361
+ blank=True, default="", max_length=10, verbose_name="Device created"
362
+ ),
363
+ ),
364
+ migrations.AlterField(
365
+ model_name="healtheconomicsupdate",
366
+ name="device_modified",
367
+ field=models.CharField(
368
+ blank=True, default="", max_length=10, verbose_name="Device modified"
369
+ ),
370
+ ),
371
+ migrations.AlterField(
372
+ model_name="healtheconomicsupdate",
373
+ name="locale_created",
374
+ field=models.CharField(
375
+ blank=True,
376
+ default="",
377
+ help_text="Auto-updated by Modeladmin",
378
+ max_length=10,
379
+ verbose_name="Locale created",
380
+ ),
381
+ ),
382
+ migrations.AlterField(
383
+ model_name="healtheconomicsupdate",
384
+ name="locale_modified",
385
+ field=models.CharField(
386
+ blank=True,
387
+ default="",
388
+ help_text="Auto-updated by Modeladmin",
389
+ max_length=10,
390
+ verbose_name="Locale modified",
391
+ ),
392
+ ),
393
+ migrations.AlterField(
394
+ model_name="healtheconomicsupdate",
395
+ name="relationship_to_hoh_other",
396
+ field=edc_model_fields.fields.other_charfield.OtherCharField(
397
+ blank=True,
398
+ default="",
399
+ max_length=35,
400
+ verbose_name="If OTHER relationship, specify ...",
401
+ ),
402
+ ),
403
+ migrations.AlterField(
404
+ model_name="healtheconomicsupdate",
405
+ name="report_datetime",
406
+ field=models.DateTimeField(
407
+ default=django.utils.timezone.now,
408
+ help_text="If reporting today, use today's date/time, otherwise use the date/time this information was reported.",
409
+ validators=[
410
+ edc_protocol.validators.datetime_not_before_study_start,
411
+ edc_model.validators.date.datetime_not_future,
412
+ ],
413
+ verbose_name="Report Date",
414
+ ),
415
+ ),
416
+ migrations.AlterField(
417
+ model_name="healtheconomicsupdate",
418
+ name="revision",
419
+ field=django_revision.revision_field.RevisionField(
420
+ blank=True,
421
+ default="",
422
+ editable=False,
423
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
424
+ max_length=75,
425
+ verbose_name="Revision",
426
+ ),
427
+ ),
428
+ migrations.AlterField(
429
+ model_name="hepatitistest",
430
+ name="consent_model",
431
+ field=models.CharField(blank=True, default="", max_length=50),
432
+ ),
433
+ migrations.AlterField(
434
+ model_name="hepatitistest",
435
+ name="consent_version",
436
+ field=models.CharField(blank=True, default="", max_length=10),
437
+ ),
438
+ migrations.AlterField(
439
+ model_name="hepatitistest",
440
+ name="crf_status_comments",
441
+ field=models.TextField(
442
+ blank=True,
443
+ default="",
444
+ help_text="for example, why some data is still pending",
445
+ verbose_name="Any comments related to status of this CRF",
446
+ ),
447
+ ),
448
+ migrations.AlterField(
449
+ model_name="hepatitistest",
450
+ name="device_created",
451
+ field=models.CharField(
452
+ blank=True, default="", max_length=10, verbose_name="Device created"
453
+ ),
454
+ ),
455
+ migrations.AlterField(
456
+ model_name="hepatitistest",
457
+ name="device_modified",
458
+ field=models.CharField(
459
+ blank=True, default="", max_length=10, verbose_name="Device modified"
460
+ ),
461
+ ),
462
+ migrations.AlterField(
463
+ model_name="hepatitistest",
464
+ name="hbsag",
465
+ field=models.CharField(
466
+ blank=True,
467
+ choices=[
468
+ ("POS", "Positive"),
469
+ ("NEG", "Negative"),
470
+ ("IND", "Indeterminate"),
471
+ ],
472
+ default="",
473
+ max_length=15,
474
+ verbose_name="<u>HbSAg</u>",
475
+ ),
476
+ ),
477
+ migrations.AlterField(
478
+ model_name="hepatitistest",
479
+ name="hcv",
480
+ field=models.CharField(
481
+ blank=True,
482
+ choices=[
483
+ ("POS", "Positive"),
484
+ ("NEG", "Negative"),
485
+ ("IND", "Indeterminate"),
486
+ ],
487
+ default="",
488
+ max_length=15,
489
+ verbose_name="<u>HCV</u>",
490
+ ),
491
+ ),
492
+ migrations.AlterField(
493
+ model_name="hepatitistest",
494
+ name="locale_created",
495
+ field=models.CharField(
496
+ blank=True,
497
+ default="",
498
+ help_text="Auto-updated by Modeladmin",
499
+ max_length=10,
500
+ verbose_name="Locale created",
501
+ ),
502
+ ),
503
+ migrations.AlterField(
504
+ model_name="hepatitistest",
505
+ name="locale_modified",
506
+ field=models.CharField(
507
+ blank=True,
508
+ default="",
509
+ help_text="Auto-updated by Modeladmin",
510
+ max_length=10,
511
+ verbose_name="Locale modified",
512
+ ),
513
+ ),
514
+ migrations.AlterField(
515
+ model_name="hepatitistest",
516
+ name="report_datetime",
517
+ field=models.DateTimeField(
518
+ default=django.utils.timezone.now,
519
+ help_text="If reporting today, use today's date/time, otherwise use the date/time this information was reported.",
520
+ validators=[
521
+ edc_protocol.validators.datetime_not_before_study_start,
522
+ edc_model.validators.date.datetime_not_future,
523
+ ],
524
+ verbose_name="Report Date",
525
+ ),
526
+ ),
527
+ migrations.AlterField(
528
+ model_name="hepatitistest",
529
+ name="revision",
530
+ field=django_revision.revision_field.RevisionField(
531
+ blank=True,
532
+ default="",
533
+ editable=False,
534
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
535
+ max_length=75,
536
+ verbose_name="Revision",
537
+ ),
538
+ ),
539
+ migrations.AlterField(
540
+ model_name="historicalbirthoutcomes",
541
+ name="consent_model",
542
+ field=models.CharField(blank=True, default="", max_length=50),
543
+ ),
544
+ migrations.AlterField(
545
+ model_name="historicalbirthoutcomes",
546
+ name="consent_version",
547
+ field=models.CharField(blank=True, default="", max_length=10),
548
+ ),
549
+ migrations.AlterField(
550
+ model_name="historicalbirthoutcomes",
551
+ name="crf_status_comments",
552
+ field=models.TextField(
553
+ blank=True,
554
+ default="",
555
+ help_text="for example, why some data is still pending",
556
+ verbose_name="Any comments related to status of this CRF",
557
+ ),
558
+ ),
559
+ migrations.AlterField(
560
+ model_name="historicalbirthoutcomes",
561
+ name="device_created",
562
+ field=models.CharField(
563
+ blank=True, default="", max_length=10, verbose_name="Device created"
564
+ ),
565
+ ),
566
+ migrations.AlterField(
567
+ model_name="historicalbirthoutcomes",
568
+ name="device_modified",
569
+ field=models.CharField(
570
+ blank=True, default="", max_length=10, verbose_name="Device modified"
571
+ ),
572
+ ),
573
+ migrations.AlterField(
574
+ model_name="historicalbirthoutcomes",
575
+ name="locale_created",
576
+ field=models.CharField(
577
+ blank=True,
578
+ default="",
579
+ help_text="Auto-updated by Modeladmin",
580
+ max_length=10,
581
+ verbose_name="Locale created",
582
+ ),
583
+ ),
584
+ migrations.AlterField(
585
+ model_name="historicalbirthoutcomes",
586
+ name="locale_modified",
587
+ field=models.CharField(
588
+ blank=True,
589
+ default="",
590
+ help_text="Auto-updated by Modeladmin",
591
+ max_length=10,
592
+ verbose_name="Locale modified",
593
+ ),
594
+ ),
595
+ migrations.AlterField(
596
+ model_name="historicalbirthoutcomes",
597
+ name="revision",
598
+ field=django_revision.revision_field.RevisionField(
599
+ blank=True,
600
+ default="",
601
+ editable=False,
602
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
603
+ max_length=75,
604
+ verbose_name="Revision",
605
+ ),
606
+ ),
607
+ migrations.AlterField(
608
+ model_name="historicalbloodresultsfbc",
609
+ name="abnormal_summary",
610
+ field=models.TextField(blank=True, default=""),
611
+ ),
612
+ migrations.AlterField(
613
+ model_name="historicalbloodresultsfbc",
614
+ name="action_identifier",
615
+ field=models.CharField(blank=True, db_index=True, default="", max_length=50),
616
+ ),
617
+ migrations.AlterField(
618
+ model_name="historicalbloodresultsfbc",
619
+ name="action_item_reason",
620
+ field=models.TextField(default="", editable=False),
621
+ ),
622
+ migrations.AlterField(
623
+ model_name="historicalbloodresultsfbc",
624
+ name="consent_model",
625
+ field=models.CharField(blank=True, default="", max_length=50),
626
+ ),
627
+ migrations.AlterField(
628
+ model_name="historicalbloodresultsfbc",
629
+ name="consent_version",
630
+ field=models.CharField(blank=True, default="", max_length=10),
631
+ ),
632
+ migrations.AlterField(
633
+ model_name="historicalbloodresultsfbc",
634
+ name="crf_status_comments",
635
+ field=models.TextField(
636
+ blank=True,
637
+ default="",
638
+ help_text="for example, why some data is still pending",
639
+ verbose_name="Any comments related to status of this CRF",
640
+ ),
641
+ ),
642
+ migrations.AlterField(
643
+ model_name="historicalbloodresultsfbc",
644
+ name="device_created",
645
+ field=models.CharField(
646
+ blank=True, default="", max_length=10, verbose_name="Device created"
647
+ ),
648
+ ),
649
+ migrations.AlterField(
650
+ model_name="historicalbloodresultsfbc",
651
+ name="device_modified",
652
+ field=models.CharField(
653
+ blank=True, default="", max_length=10, verbose_name="Device modified"
654
+ ),
655
+ ),
656
+ migrations.AlterField(
657
+ model_name="historicalbloodresultsfbc",
658
+ name="errors",
659
+ field=models.TextField(blank=True, default=""),
660
+ ),
661
+ migrations.AlterField(
662
+ model_name="historicalbloodresultsfbc",
663
+ name="locale_created",
664
+ field=models.CharField(
665
+ blank=True,
666
+ default="",
667
+ help_text="Auto-updated by Modeladmin",
668
+ max_length=10,
669
+ verbose_name="Locale created",
670
+ ),
671
+ ),
672
+ migrations.AlterField(
673
+ model_name="historicalbloodresultsfbc",
674
+ name="locale_modified",
675
+ field=models.CharField(
676
+ blank=True,
677
+ default="",
678
+ help_text="Auto-updated by Modeladmin",
679
+ max_length=10,
680
+ verbose_name="Locale modified",
681
+ ),
682
+ ),
683
+ migrations.AlterField(
684
+ model_name="historicalbloodresultsfbc",
685
+ name="missing",
686
+ field=models.TextField(
687
+ default="",
688
+ editable=False,
689
+ help_text="calculated string of field names that have been left blank",
690
+ ),
691
+ ),
692
+ migrations.AlterField(
693
+ model_name="historicalbloodresultsfbc",
694
+ name="parent_action_identifier",
695
+ field=models.CharField(
696
+ blank=True,
697
+ default="",
698
+ help_text="action identifier that links to parent reference model instance.",
699
+ max_length=30,
700
+ ),
701
+ ),
702
+ migrations.AlterField(
703
+ model_name="historicalbloodresultsfbc",
704
+ name="related_action_identifier",
705
+ field=models.CharField(
706
+ blank=True,
707
+ default="",
708
+ help_text="action identifier that links to related reference model instance.",
709
+ max_length=30,
710
+ ),
711
+ ),
712
+ migrations.AlterField(
713
+ model_name="historicalbloodresultsfbc",
714
+ name="report_datetime",
715
+ field=models.DateTimeField(
716
+ default=django.utils.timezone.now,
717
+ help_text="If reporting today, use today's date/time, otherwise use the date/time this information was reported.",
718
+ validators=[
719
+ edc_protocol.validators.datetime_not_before_study_start,
720
+ edc_model.validators.date.datetime_not_future,
721
+ ],
722
+ verbose_name="Report Date",
723
+ ),
724
+ ),
725
+ migrations.AlterField(
726
+ model_name="historicalbloodresultsfbc",
727
+ name="reportable_summary",
728
+ field=models.TextField(blank=True, default=""),
729
+ ),
730
+ migrations.AlterField(
731
+ model_name="historicalbloodresultsfbc",
732
+ name="revision",
733
+ field=django_revision.revision_field.RevisionField(
734
+ blank=True,
735
+ default="",
736
+ editable=False,
737
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
738
+ max_length=75,
739
+ verbose_name="Revision",
740
+ ),
741
+ ),
742
+ migrations.AlterField(
743
+ model_name="historicalbloodresultsfbc",
744
+ name="summary",
745
+ field=models.TextField(blank=True, default=""),
746
+ ),
747
+ migrations.AlterField(
748
+ model_name="historicalbloodresultsgludummy",
749
+ name="abnormal_summary",
750
+ field=models.TextField(blank=True, default=""),
751
+ ),
752
+ migrations.AlterField(
753
+ model_name="historicalbloodresultsgludummy",
754
+ name="action_identifier",
755
+ field=models.CharField(blank=True, db_index=True, default="", max_length=50),
756
+ ),
757
+ migrations.AlterField(
758
+ model_name="historicalbloodresultsgludummy",
759
+ name="action_item_reason",
760
+ field=models.TextField(default="", editable=False),
761
+ ),
762
+ migrations.AlterField(
763
+ model_name="historicalbloodresultsgludummy",
764
+ name="consent_model",
765
+ field=models.CharField(blank=True, default="", max_length=50),
766
+ ),
767
+ migrations.AlterField(
768
+ model_name="historicalbloodresultsgludummy",
769
+ name="consent_version",
770
+ field=models.CharField(blank=True, default="", max_length=10),
771
+ ),
772
+ migrations.AlterField(
773
+ model_name="historicalbloodresultsgludummy",
774
+ name="crf_status_comments",
775
+ field=models.TextField(
776
+ blank=True,
777
+ default="",
778
+ help_text="for example, why some data is still pending",
779
+ verbose_name="Any comments related to status of this CRF",
780
+ ),
781
+ ),
782
+ migrations.AlterField(
783
+ model_name="historicalbloodresultsgludummy",
784
+ name="device_created",
785
+ field=models.CharField(
786
+ blank=True, default="", max_length=10, verbose_name="Device created"
787
+ ),
788
+ ),
789
+ migrations.AlterField(
790
+ model_name="historicalbloodresultsgludummy",
791
+ name="device_modified",
792
+ field=models.CharField(
793
+ blank=True, default="", max_length=10, verbose_name="Device modified"
794
+ ),
795
+ ),
796
+ migrations.AlterField(
797
+ model_name="historicalbloodresultsgludummy",
798
+ name="errors",
799
+ field=models.TextField(blank=True, default=""),
800
+ ),
801
+ migrations.AlterField(
802
+ model_name="historicalbloodresultsgludummy",
803
+ name="fasting",
804
+ field=models.CharField(
805
+ choices=[("fasting", "Fasting"), ("non_fasting", "Non-fasting")],
806
+ default="",
807
+ max_length=25,
808
+ verbose_name="Was this fasting or non-fasting?",
809
+ ),
810
+ ),
811
+ migrations.AlterField(
812
+ model_name="historicalbloodresultsgludummy",
813
+ name="is_poc",
814
+ field=models.CharField(
815
+ choices=[("Yes", "Yes"), ("No", "No")],
816
+ default="",
817
+ max_length=15,
818
+ verbose_name="Was a point-of-care test used?",
819
+ ),
820
+ ),
821
+ migrations.AlterField(
822
+ model_name="historicalbloodresultsgludummy",
823
+ name="locale_created",
824
+ field=models.CharField(
825
+ blank=True,
826
+ default="",
827
+ help_text="Auto-updated by Modeladmin",
828
+ max_length=10,
829
+ verbose_name="Locale created",
830
+ ),
831
+ ),
832
+ migrations.AlterField(
833
+ model_name="historicalbloodresultsgludummy",
834
+ name="locale_modified",
835
+ field=models.CharField(
836
+ blank=True,
837
+ default="",
838
+ help_text="Auto-updated by Modeladmin",
839
+ max_length=10,
840
+ verbose_name="Locale modified",
841
+ ),
842
+ ),
843
+ migrations.AlterField(
844
+ model_name="historicalbloodresultsgludummy",
845
+ name="missing",
846
+ field=models.TextField(
847
+ default="",
848
+ editable=False,
849
+ help_text="calculated string of field names that have been left blank",
850
+ ),
851
+ ),
852
+ migrations.AlterField(
853
+ model_name="historicalbloodresultsgludummy",
854
+ name="parent_action_identifier",
855
+ field=models.CharField(
856
+ blank=True,
857
+ default="",
858
+ help_text="action identifier that links to parent reference model instance.",
859
+ max_length=30,
860
+ ),
861
+ ),
862
+ migrations.AlterField(
863
+ model_name="historicalbloodresultsgludummy",
864
+ name="related_action_identifier",
865
+ field=models.CharField(
866
+ blank=True,
867
+ default="",
868
+ help_text="action identifier that links to related reference model instance.",
869
+ max_length=30,
870
+ ),
871
+ ),
872
+ migrations.AlterField(
873
+ model_name="historicalbloodresultsgludummy",
874
+ name="report_datetime",
875
+ field=models.DateTimeField(
876
+ default=django.utils.timezone.now,
877
+ help_text="If reporting today, use today's date/time, otherwise use the date/time this information was reported.",
878
+ validators=[
879
+ edc_protocol.validators.datetime_not_before_study_start,
880
+ edc_model.validators.date.datetime_not_future,
881
+ ],
882
+ verbose_name="Report Date",
883
+ ),
884
+ ),
885
+ migrations.AlterField(
886
+ model_name="historicalbloodresultsgludummy",
887
+ name="reportable_summary",
888
+ field=models.TextField(blank=True, default=""),
889
+ ),
890
+ migrations.AlterField(
891
+ model_name="historicalbloodresultsgludummy",
892
+ name="revision",
893
+ field=django_revision.revision_field.RevisionField(
894
+ blank=True,
895
+ default="",
896
+ editable=False,
897
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
898
+ max_length=75,
899
+ verbose_name="Revision",
900
+ ),
901
+ ),
902
+ migrations.AlterField(
903
+ model_name="historicalbloodresultsgludummy",
904
+ name="summary",
905
+ field=models.TextField(blank=True, default=""),
906
+ ),
907
+ migrations.AlterField(
908
+ model_name="historicalbloodresultshba1c",
909
+ name="abnormal_summary",
910
+ field=models.TextField(blank=True, default=""),
911
+ ),
912
+ migrations.AlterField(
913
+ model_name="historicalbloodresultshba1c",
914
+ name="action_identifier",
915
+ field=models.CharField(blank=True, db_index=True, default="", max_length=50),
916
+ ),
917
+ migrations.AlterField(
918
+ model_name="historicalbloodresultshba1c",
919
+ name="action_item_reason",
920
+ field=models.TextField(default="", editable=False),
921
+ ),
922
+ migrations.AlterField(
923
+ model_name="historicalbloodresultshba1c",
924
+ name="consent_model",
925
+ field=models.CharField(blank=True, default="", max_length=50),
926
+ ),
927
+ migrations.AlterField(
928
+ model_name="historicalbloodresultshba1c",
929
+ name="consent_version",
930
+ field=models.CharField(blank=True, default="", max_length=10),
931
+ ),
932
+ migrations.AlterField(
933
+ model_name="historicalbloodresultshba1c",
934
+ name="crf_status_comments",
935
+ field=models.TextField(
936
+ blank=True,
937
+ default="",
938
+ help_text="for example, why some data is still pending",
939
+ verbose_name="Any comments related to status of this CRF",
940
+ ),
941
+ ),
942
+ migrations.AlterField(
943
+ model_name="historicalbloodresultshba1c",
944
+ name="device_created",
945
+ field=models.CharField(
946
+ blank=True, default="", max_length=10, verbose_name="Device created"
947
+ ),
948
+ ),
949
+ migrations.AlterField(
950
+ model_name="historicalbloodresultshba1c",
951
+ name="device_modified",
952
+ field=models.CharField(
953
+ blank=True, default="", max_length=10, verbose_name="Device modified"
954
+ ),
955
+ ),
956
+ migrations.AlterField(
957
+ model_name="historicalbloodresultshba1c",
958
+ name="errors",
959
+ field=models.TextField(blank=True, default=""),
960
+ ),
961
+ migrations.AlterField(
962
+ model_name="historicalbloodresultshba1c",
963
+ name="hba1c_abnormal",
964
+ field=models.CharField(
965
+ blank=True,
966
+ choices=[("Yes", "Yes"), ("No", "No")],
967
+ default="",
968
+ max_length=25,
969
+ verbose_name="abnormal",
970
+ ),
971
+ ),
972
+ migrations.AlterField(
973
+ model_name="historicalbloodresultshba1c",
974
+ name="hba1c_quantifier",
975
+ field=models.CharField(
976
+ default="=",
977
+ editable=False,
978
+ max_length=10,
979
+ verbose_name="HbA1c quantifier",
980
+ ),
981
+ ),
982
+ migrations.AlterField(
983
+ model_name="historicalbloodresultshba1c",
984
+ name="hba1c_reportable",
985
+ field=models.CharField(
986
+ blank=True,
987
+ choices=[
988
+ ("N/A", "Not applicable"),
989
+ ("3", "Yes, grade 3"),
990
+ ("4", "Yes, grade 4"),
991
+ ("No", "Not reportable"),
992
+ ("Already reported", "Already reported"),
993
+ ("present_at_baseline", "Present at baseline"),
994
+ ],
995
+ default="",
996
+ max_length=25,
997
+ verbose_name="reportable",
998
+ ),
999
+ ),
1000
+ migrations.AlterField(
1001
+ model_name="historicalbloodresultshba1c",
1002
+ name="hba1c_units",
1003
+ field=models.CharField(
1004
+ blank=True, default="%", max_length=15, verbose_name="HbA1c units"
1005
+ ),
1006
+ ),
1007
+ migrations.AlterField(
1008
+ model_name="historicalbloodresultshba1c",
1009
+ name="hba1c_value",
1010
+ field=models.DecimalField(
1011
+ blank=True,
1012
+ decimal_places=2,
1013
+ help_text="In percent. A `HIGH` reading may be entered as 9999.99",
1014
+ max_digits=8,
1015
+ null=True,
1016
+ verbose_name="HbA1c value",
1017
+ ),
1018
+ ),
1019
+ migrations.AlterField(
1020
+ model_name="historicalbloodresultshba1c",
1021
+ name="is_poc",
1022
+ field=models.CharField(
1023
+ choices=[("Yes", "Yes"), ("No", "No")],
1024
+ default="",
1025
+ max_length=15,
1026
+ verbose_name="Was a point-of-care test used?",
1027
+ ),
1028
+ ),
1029
+ migrations.AlterField(
1030
+ model_name="historicalbloodresultshba1c",
1031
+ name="locale_created",
1032
+ field=models.CharField(
1033
+ blank=True,
1034
+ default="",
1035
+ help_text="Auto-updated by Modeladmin",
1036
+ max_length=10,
1037
+ verbose_name="Locale created",
1038
+ ),
1039
+ ),
1040
+ migrations.AlterField(
1041
+ model_name="historicalbloodresultshba1c",
1042
+ name="locale_modified",
1043
+ field=models.CharField(
1044
+ blank=True,
1045
+ default="",
1046
+ help_text="Auto-updated by Modeladmin",
1047
+ max_length=10,
1048
+ verbose_name="Locale modified",
1049
+ ),
1050
+ ),
1051
+ migrations.AlterField(
1052
+ model_name="historicalbloodresultshba1c",
1053
+ name="missing",
1054
+ field=models.TextField(
1055
+ default="",
1056
+ editable=False,
1057
+ help_text="calculated string of field names that have been left blank",
1058
+ ),
1059
+ ),
1060
+ migrations.AlterField(
1061
+ model_name="historicalbloodresultshba1c",
1062
+ name="parent_action_identifier",
1063
+ field=models.CharField(
1064
+ blank=True,
1065
+ default="",
1066
+ help_text="action identifier that links to parent reference model instance.",
1067
+ max_length=30,
1068
+ ),
1069
+ ),
1070
+ migrations.AlterField(
1071
+ model_name="historicalbloodresultshba1c",
1072
+ name="related_action_identifier",
1073
+ field=models.CharField(
1074
+ blank=True,
1075
+ default="",
1076
+ help_text="action identifier that links to related reference model instance.",
1077
+ max_length=30,
1078
+ ),
1079
+ ),
1080
+ migrations.AlterField(
1081
+ model_name="historicalbloodresultshba1c",
1082
+ name="report_datetime",
1083
+ field=models.DateTimeField(
1084
+ default=django.utils.timezone.now,
1085
+ help_text="If reporting today, use today's date/time, otherwise use the date/time this information was reported.",
1086
+ validators=[
1087
+ edc_protocol.validators.datetime_not_before_study_start,
1088
+ edc_model.validators.date.datetime_not_future,
1089
+ ],
1090
+ verbose_name="Report Date",
1091
+ ),
1092
+ ),
1093
+ migrations.AlterField(
1094
+ model_name="historicalbloodresultshba1c",
1095
+ name="reportable_summary",
1096
+ field=models.TextField(blank=True, default=""),
1097
+ ),
1098
+ migrations.AlterField(
1099
+ model_name="historicalbloodresultshba1c",
1100
+ name="revision",
1101
+ field=django_revision.revision_field.RevisionField(
1102
+ blank=True,
1103
+ default="",
1104
+ editable=False,
1105
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
1106
+ max_length=75,
1107
+ verbose_name="Revision",
1108
+ ),
1109
+ ),
1110
+ migrations.AlterField(
1111
+ model_name="historicalbloodresultshba1c",
1112
+ name="summary",
1113
+ field=models.TextField(blank=True, default=""),
1114
+ ),
1115
+ migrations.AlterField(
1116
+ model_name="historicalbloodresultsins",
1117
+ name="abnormal_summary",
1118
+ field=models.TextField(blank=True, default=""),
1119
+ ),
1120
+ migrations.AlterField(
1121
+ model_name="historicalbloodresultsins",
1122
+ name="action_identifier",
1123
+ field=models.CharField(blank=True, db_index=True, default="", max_length=50),
1124
+ ),
1125
+ migrations.AlterField(
1126
+ model_name="historicalbloodresultsins",
1127
+ name="action_item_reason",
1128
+ field=models.TextField(default="", editable=False),
1129
+ ),
1130
+ migrations.AlterField(
1131
+ model_name="historicalbloodresultsins",
1132
+ name="consent_model",
1133
+ field=models.CharField(blank=True, default="", max_length=50),
1134
+ ),
1135
+ migrations.AlterField(
1136
+ model_name="historicalbloodresultsins",
1137
+ name="consent_version",
1138
+ field=models.CharField(blank=True, default="", max_length=10),
1139
+ ),
1140
+ migrations.AlterField(
1141
+ model_name="historicalbloodresultsins",
1142
+ name="crf_status_comments",
1143
+ field=models.TextField(
1144
+ blank=True,
1145
+ default="",
1146
+ help_text="for example, why some data is still pending",
1147
+ verbose_name="Any comments related to status of this CRF",
1148
+ ),
1149
+ ),
1150
+ migrations.AlterField(
1151
+ model_name="historicalbloodresultsins",
1152
+ name="device_created",
1153
+ field=models.CharField(
1154
+ blank=True, default="", max_length=10, verbose_name="Device created"
1155
+ ),
1156
+ ),
1157
+ migrations.AlterField(
1158
+ model_name="historicalbloodresultsins",
1159
+ name="device_modified",
1160
+ field=models.CharField(
1161
+ blank=True, default="", max_length=10, verbose_name="Device modified"
1162
+ ),
1163
+ ),
1164
+ migrations.AlterField(
1165
+ model_name="historicalbloodresultsins",
1166
+ name="errors",
1167
+ field=models.TextField(blank=True, default=""),
1168
+ ),
1169
+ migrations.AlterField(
1170
+ model_name="historicalbloodresultsins",
1171
+ name="locale_created",
1172
+ field=models.CharField(
1173
+ blank=True,
1174
+ default="",
1175
+ help_text="Auto-updated by Modeladmin",
1176
+ max_length=10,
1177
+ verbose_name="Locale created",
1178
+ ),
1179
+ ),
1180
+ migrations.AlterField(
1181
+ model_name="historicalbloodresultsins",
1182
+ name="locale_modified",
1183
+ field=models.CharField(
1184
+ blank=True,
1185
+ default="",
1186
+ help_text="Auto-updated by Modeladmin",
1187
+ max_length=10,
1188
+ verbose_name="Locale modified",
1189
+ ),
1190
+ ),
1191
+ migrations.AlterField(
1192
+ model_name="historicalbloodresultsins",
1193
+ name="missing",
1194
+ field=models.TextField(
1195
+ default="",
1196
+ editable=False,
1197
+ help_text="calculated string of field names that have been left blank",
1198
+ ),
1199
+ ),
1200
+ migrations.AlterField(
1201
+ model_name="historicalbloodresultsins",
1202
+ name="parent_action_identifier",
1203
+ field=models.CharField(
1204
+ blank=True,
1205
+ default="",
1206
+ help_text="action identifier that links to parent reference model instance.",
1207
+ max_length=30,
1208
+ ),
1209
+ ),
1210
+ migrations.AlterField(
1211
+ model_name="historicalbloodresultsins",
1212
+ name="related_action_identifier",
1213
+ field=models.CharField(
1214
+ blank=True,
1215
+ default="",
1216
+ help_text="action identifier that links to related reference model instance.",
1217
+ max_length=30,
1218
+ ),
1219
+ ),
1220
+ migrations.AlterField(
1221
+ model_name="historicalbloodresultsins",
1222
+ name="report_datetime",
1223
+ field=models.DateTimeField(
1224
+ default=django.utils.timezone.now,
1225
+ help_text="If reporting today, use today's date/time, otherwise use the date/time this information was reported.",
1226
+ validators=[
1227
+ edc_protocol.validators.datetime_not_before_study_start,
1228
+ edc_model.validators.date.datetime_not_future,
1229
+ ],
1230
+ verbose_name="Report Date",
1231
+ ),
1232
+ ),
1233
+ migrations.AlterField(
1234
+ model_name="historicalbloodresultsins",
1235
+ name="reportable_summary",
1236
+ field=models.TextField(blank=True, default=""),
1237
+ ),
1238
+ migrations.AlterField(
1239
+ model_name="historicalbloodresultsins",
1240
+ name="revision",
1241
+ field=django_revision.revision_field.RevisionField(
1242
+ blank=True,
1243
+ default="",
1244
+ editable=False,
1245
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
1246
+ max_length=75,
1247
+ verbose_name="Revision",
1248
+ ),
1249
+ ),
1250
+ migrations.AlterField(
1251
+ model_name="historicalbloodresultsins",
1252
+ name="summary",
1253
+ field=models.TextField(blank=True, default=""),
1254
+ ),
1255
+ migrations.AlterField(
1256
+ model_name="historicalbloodresultslft",
1257
+ name="abnormal_summary",
1258
+ field=models.TextField(blank=True, default=""),
1259
+ ),
1260
+ migrations.AlterField(
1261
+ model_name="historicalbloodresultslft",
1262
+ name="action_identifier",
1263
+ field=models.CharField(blank=True, db_index=True, default="", max_length=50),
1264
+ ),
1265
+ migrations.AlterField(
1266
+ model_name="historicalbloodresultslft",
1267
+ name="action_item_reason",
1268
+ field=models.TextField(default="", editable=False),
1269
+ ),
1270
+ migrations.AlterField(
1271
+ model_name="historicalbloodresultslft",
1272
+ name="consent_model",
1273
+ field=models.CharField(blank=True, default="", max_length=50),
1274
+ ),
1275
+ migrations.AlterField(
1276
+ model_name="historicalbloodresultslft",
1277
+ name="consent_version",
1278
+ field=models.CharField(blank=True, default="", max_length=10),
1279
+ ),
1280
+ migrations.AlterField(
1281
+ model_name="historicalbloodresultslft",
1282
+ name="crf_status_comments",
1283
+ field=models.TextField(
1284
+ blank=True,
1285
+ default="",
1286
+ help_text="for example, why some data is still pending",
1287
+ verbose_name="Any comments related to status of this CRF",
1288
+ ),
1289
+ ),
1290
+ migrations.AlterField(
1291
+ model_name="historicalbloodresultslft",
1292
+ name="device_created",
1293
+ field=models.CharField(
1294
+ blank=True, default="", max_length=10, verbose_name="Device created"
1295
+ ),
1296
+ ),
1297
+ migrations.AlterField(
1298
+ model_name="historicalbloodresultslft",
1299
+ name="device_modified",
1300
+ field=models.CharField(
1301
+ blank=True, default="", max_length=10, verbose_name="Device modified"
1302
+ ),
1303
+ ),
1304
+ migrations.AlterField(
1305
+ model_name="historicalbloodresultslft",
1306
+ name="errors",
1307
+ field=models.TextField(blank=True, default=""),
1308
+ ),
1309
+ migrations.AlterField(
1310
+ model_name="historicalbloodresultslft",
1311
+ name="locale_created",
1312
+ field=models.CharField(
1313
+ blank=True,
1314
+ default="",
1315
+ help_text="Auto-updated by Modeladmin",
1316
+ max_length=10,
1317
+ verbose_name="Locale created",
1318
+ ),
1319
+ ),
1320
+ migrations.AlterField(
1321
+ model_name="historicalbloodresultslft",
1322
+ name="locale_modified",
1323
+ field=models.CharField(
1324
+ blank=True,
1325
+ default="",
1326
+ help_text="Auto-updated by Modeladmin",
1327
+ max_length=10,
1328
+ verbose_name="Locale modified",
1329
+ ),
1330
+ ),
1331
+ migrations.AlterField(
1332
+ model_name="historicalbloodresultslft",
1333
+ name="missing",
1334
+ field=models.TextField(
1335
+ default="",
1336
+ editable=False,
1337
+ help_text="calculated string of field names that have been left blank",
1338
+ ),
1339
+ ),
1340
+ migrations.AlterField(
1341
+ model_name="historicalbloodresultslft",
1342
+ name="parent_action_identifier",
1343
+ field=models.CharField(
1344
+ blank=True,
1345
+ default="",
1346
+ help_text="action identifier that links to parent reference model instance.",
1347
+ max_length=30,
1348
+ ),
1349
+ ),
1350
+ migrations.AlterField(
1351
+ model_name="historicalbloodresultslft",
1352
+ name="related_action_identifier",
1353
+ field=models.CharField(
1354
+ blank=True,
1355
+ default="",
1356
+ help_text="action identifier that links to related reference model instance.",
1357
+ max_length=30,
1358
+ ),
1359
+ ),
1360
+ migrations.AlterField(
1361
+ model_name="historicalbloodresultslft",
1362
+ name="report_datetime",
1363
+ field=models.DateTimeField(
1364
+ default=django.utils.timezone.now,
1365
+ help_text="If reporting today, use today's date/time, otherwise use the date/time this information was reported.",
1366
+ validators=[
1367
+ edc_protocol.validators.datetime_not_before_study_start,
1368
+ edc_model.validators.date.datetime_not_future,
1369
+ ],
1370
+ verbose_name="Report Date",
1371
+ ),
1372
+ ),
1373
+ migrations.AlterField(
1374
+ model_name="historicalbloodresultslft",
1375
+ name="reportable_summary",
1376
+ field=models.TextField(blank=True, default=""),
1377
+ ),
1378
+ migrations.AlterField(
1379
+ model_name="historicalbloodresultslft",
1380
+ name="revision",
1381
+ field=django_revision.revision_field.RevisionField(
1382
+ blank=True,
1383
+ default="",
1384
+ editable=False,
1385
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
1386
+ max_length=75,
1387
+ verbose_name="Revision",
1388
+ ),
1389
+ ),
1390
+ migrations.AlterField(
1391
+ model_name="historicalbloodresultslft",
1392
+ name="summary",
1393
+ field=models.TextField(blank=True, default=""),
1394
+ ),
1395
+ migrations.AlterField(
1396
+ model_name="historicalbloodresultslipids",
1397
+ name="abnormal_summary",
1398
+ field=models.TextField(blank=True, default=""),
1399
+ ),
1400
+ migrations.AlterField(
1401
+ model_name="historicalbloodresultslipids",
1402
+ name="action_identifier",
1403
+ field=models.CharField(blank=True, db_index=True, default="", max_length=50),
1404
+ ),
1405
+ migrations.AlterField(
1406
+ model_name="historicalbloodresultslipids",
1407
+ name="action_item_reason",
1408
+ field=models.TextField(default="", editable=False),
1409
+ ),
1410
+ migrations.AlterField(
1411
+ model_name="historicalbloodresultslipids",
1412
+ name="consent_model",
1413
+ field=models.CharField(blank=True, default="", max_length=50),
1414
+ ),
1415
+ migrations.AlterField(
1416
+ model_name="historicalbloodresultslipids",
1417
+ name="consent_version",
1418
+ field=models.CharField(blank=True, default="", max_length=10),
1419
+ ),
1420
+ migrations.AlterField(
1421
+ model_name="historicalbloodresultslipids",
1422
+ name="crf_status_comments",
1423
+ field=models.TextField(
1424
+ blank=True,
1425
+ default="",
1426
+ help_text="for example, why some data is still pending",
1427
+ verbose_name="Any comments related to status of this CRF",
1428
+ ),
1429
+ ),
1430
+ migrations.AlterField(
1431
+ model_name="historicalbloodresultslipids",
1432
+ name="device_created",
1433
+ field=models.CharField(
1434
+ blank=True, default="", max_length=10, verbose_name="Device created"
1435
+ ),
1436
+ ),
1437
+ migrations.AlterField(
1438
+ model_name="historicalbloodresultslipids",
1439
+ name="device_modified",
1440
+ field=models.CharField(
1441
+ blank=True, default="", max_length=10, verbose_name="Device modified"
1442
+ ),
1443
+ ),
1444
+ migrations.AlterField(
1445
+ model_name="historicalbloodresultslipids",
1446
+ name="errors",
1447
+ field=models.TextField(blank=True, default=""),
1448
+ ),
1449
+ migrations.AlterField(
1450
+ model_name="historicalbloodresultslipids",
1451
+ name="locale_created",
1452
+ field=models.CharField(
1453
+ blank=True,
1454
+ default="",
1455
+ help_text="Auto-updated by Modeladmin",
1456
+ max_length=10,
1457
+ verbose_name="Locale created",
1458
+ ),
1459
+ ),
1460
+ migrations.AlterField(
1461
+ model_name="historicalbloodresultslipids",
1462
+ name="locale_modified",
1463
+ field=models.CharField(
1464
+ blank=True,
1465
+ default="",
1466
+ help_text="Auto-updated by Modeladmin",
1467
+ max_length=10,
1468
+ verbose_name="Locale modified",
1469
+ ),
1470
+ ),
1471
+ migrations.AlterField(
1472
+ model_name="historicalbloodresultslipids",
1473
+ name="missing",
1474
+ field=models.TextField(
1475
+ default="",
1476
+ editable=False,
1477
+ help_text="calculated string of field names that have been left blank",
1478
+ ),
1479
+ ),
1480
+ migrations.AlterField(
1481
+ model_name="historicalbloodresultslipids",
1482
+ name="parent_action_identifier",
1483
+ field=models.CharField(
1484
+ blank=True,
1485
+ default="",
1486
+ help_text="action identifier that links to parent reference model instance.",
1487
+ max_length=30,
1488
+ ),
1489
+ ),
1490
+ migrations.AlterField(
1491
+ model_name="historicalbloodresultslipids",
1492
+ name="related_action_identifier",
1493
+ field=models.CharField(
1494
+ blank=True,
1495
+ default="",
1496
+ help_text="action identifier that links to related reference model instance.",
1497
+ max_length=30,
1498
+ ),
1499
+ ),
1500
+ migrations.AlterField(
1501
+ model_name="historicalbloodresultslipids",
1502
+ name="report_datetime",
1503
+ field=models.DateTimeField(
1504
+ default=django.utils.timezone.now,
1505
+ help_text="If reporting today, use today's date/time, otherwise use the date/time this information was reported.",
1506
+ validators=[
1507
+ edc_protocol.validators.datetime_not_before_study_start,
1508
+ edc_model.validators.date.datetime_not_future,
1509
+ ],
1510
+ verbose_name="Report Date",
1511
+ ),
1512
+ ),
1513
+ migrations.AlterField(
1514
+ model_name="historicalbloodresultslipids",
1515
+ name="reportable_summary",
1516
+ field=models.TextField(blank=True, default=""),
1517
+ ),
1518
+ migrations.AlterField(
1519
+ model_name="historicalbloodresultslipids",
1520
+ name="revision",
1521
+ field=django_revision.revision_field.RevisionField(
1522
+ blank=True,
1523
+ default="",
1524
+ editable=False,
1525
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
1526
+ max_length=75,
1527
+ verbose_name="Revision",
1528
+ ),
1529
+ ),
1530
+ migrations.AlterField(
1531
+ model_name="historicalbloodresultslipids",
1532
+ name="summary",
1533
+ field=models.TextField(blank=True, default=""),
1534
+ ),
1535
+ migrations.AlterField(
1536
+ model_name="historicalbloodresultsrft",
1537
+ name="abnormal_summary",
1538
+ field=models.TextField(blank=True, default=""),
1539
+ ),
1540
+ migrations.AlterField(
1541
+ model_name="historicalbloodresultsrft",
1542
+ name="action_identifier",
1543
+ field=models.CharField(blank=True, db_index=True, default="", max_length=50),
1544
+ ),
1545
+ migrations.AlterField(
1546
+ model_name="historicalbloodresultsrft",
1547
+ name="action_item_reason",
1548
+ field=models.TextField(default="", editable=False),
1549
+ ),
1550
+ migrations.AlterField(
1551
+ model_name="historicalbloodresultsrft",
1552
+ name="consent_model",
1553
+ field=models.CharField(blank=True, default="", max_length=50),
1554
+ ),
1555
+ migrations.AlterField(
1556
+ model_name="historicalbloodresultsrft",
1557
+ name="consent_version",
1558
+ field=models.CharField(blank=True, default="", max_length=10),
1559
+ ),
1560
+ migrations.AlterField(
1561
+ model_name="historicalbloodresultsrft",
1562
+ name="crf_status_comments",
1563
+ field=models.TextField(
1564
+ blank=True,
1565
+ default="",
1566
+ help_text="for example, why some data is still pending",
1567
+ verbose_name="Any comments related to status of this CRF",
1568
+ ),
1569
+ ),
1570
+ migrations.AlterField(
1571
+ model_name="historicalbloodresultsrft",
1572
+ name="device_created",
1573
+ field=models.CharField(
1574
+ blank=True, default="", max_length=10, verbose_name="Device created"
1575
+ ),
1576
+ ),
1577
+ migrations.AlterField(
1578
+ model_name="historicalbloodresultsrft",
1579
+ name="device_modified",
1580
+ field=models.CharField(
1581
+ blank=True, default="", max_length=10, verbose_name="Device modified"
1582
+ ),
1583
+ ),
1584
+ migrations.AlterField(
1585
+ model_name="historicalbloodresultsrft",
1586
+ name="errors",
1587
+ field=models.TextField(blank=True, default=""),
1588
+ ),
1589
+ migrations.AlterField(
1590
+ model_name="historicalbloodresultsrft",
1591
+ name="locale_created",
1592
+ field=models.CharField(
1593
+ blank=True,
1594
+ default="",
1595
+ help_text="Auto-updated by Modeladmin",
1596
+ max_length=10,
1597
+ verbose_name="Locale created",
1598
+ ),
1599
+ ),
1600
+ migrations.AlterField(
1601
+ model_name="historicalbloodresultsrft",
1602
+ name="locale_modified",
1603
+ field=models.CharField(
1604
+ blank=True,
1605
+ default="",
1606
+ help_text="Auto-updated by Modeladmin",
1607
+ max_length=10,
1608
+ verbose_name="Locale modified",
1609
+ ),
1610
+ ),
1611
+ migrations.AlterField(
1612
+ model_name="historicalbloodresultsrft",
1613
+ name="missing",
1614
+ field=models.TextField(
1615
+ default="",
1616
+ editable=False,
1617
+ help_text="calculated string of field names that have been left blank",
1618
+ ),
1619
+ ),
1620
+ migrations.AlterField(
1621
+ model_name="historicalbloodresultsrft",
1622
+ name="parent_action_identifier",
1623
+ field=models.CharField(
1624
+ blank=True,
1625
+ default="",
1626
+ help_text="action identifier that links to parent reference model instance.",
1627
+ max_length=30,
1628
+ ),
1629
+ ),
1630
+ migrations.AlterField(
1631
+ model_name="historicalbloodresultsrft",
1632
+ name="related_action_identifier",
1633
+ field=models.CharField(
1634
+ blank=True,
1635
+ default="",
1636
+ help_text="action identifier that links to related reference model instance.",
1637
+ max_length=30,
1638
+ ),
1639
+ ),
1640
+ migrations.AlterField(
1641
+ model_name="historicalbloodresultsrft",
1642
+ name="report_datetime",
1643
+ field=models.DateTimeField(
1644
+ default=django.utils.timezone.now,
1645
+ help_text="If reporting today, use today's date/time, otherwise use the date/time this information was reported.",
1646
+ validators=[
1647
+ edc_protocol.validators.datetime_not_before_study_start,
1648
+ edc_model.validators.date.datetime_not_future,
1649
+ ],
1650
+ verbose_name="Report Date",
1651
+ ),
1652
+ ),
1653
+ migrations.AlterField(
1654
+ model_name="historicalbloodresultsrft",
1655
+ name="reportable_summary",
1656
+ field=models.TextField(blank=True, default=""),
1657
+ ),
1658
+ migrations.AlterField(
1659
+ model_name="historicalbloodresultsrft",
1660
+ name="revision",
1661
+ field=django_revision.revision_field.RevisionField(
1662
+ blank=True,
1663
+ default="",
1664
+ editable=False,
1665
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
1666
+ max_length=75,
1667
+ verbose_name="Revision",
1668
+ ),
1669
+ ),
1670
+ migrations.AlterField(
1671
+ model_name="historicalbloodresultsrft",
1672
+ name="summary",
1673
+ field=models.TextField(blank=True, default=""),
1674
+ ),
1675
+ migrations.AlterField(
1676
+ model_name="historicalcomplications",
1677
+ name="consent_model",
1678
+ field=models.CharField(blank=True, default="", max_length=50),
1679
+ ),
1680
+ migrations.AlterField(
1681
+ model_name="historicalcomplications",
1682
+ name="consent_version",
1683
+ field=models.CharField(blank=True, default="", max_length=10),
1684
+ ),
1685
+ migrations.AlterField(
1686
+ model_name="historicalcomplications",
1687
+ name="crf_status_comments",
1688
+ field=models.TextField(
1689
+ blank=True,
1690
+ default="",
1691
+ help_text="for example, why some data is still pending",
1692
+ verbose_name="Any comments related to status of this CRF",
1693
+ ),
1694
+ ),
1695
+ migrations.AlterField(
1696
+ model_name="historicalcomplications",
1697
+ name="device_created",
1698
+ field=models.CharField(
1699
+ blank=True, default="", max_length=10, verbose_name="Device created"
1700
+ ),
1701
+ ),
1702
+ migrations.AlterField(
1703
+ model_name="historicalcomplications",
1704
+ name="device_modified",
1705
+ field=models.CharField(
1706
+ blank=True, default="", max_length=10, verbose_name="Device modified"
1707
+ ),
1708
+ ),
1709
+ migrations.AlterField(
1710
+ model_name="historicalcomplications",
1711
+ name="locale_created",
1712
+ field=models.CharField(
1713
+ blank=True,
1714
+ default="",
1715
+ help_text="Auto-updated by Modeladmin",
1716
+ max_length=10,
1717
+ verbose_name="Locale created",
1718
+ ),
1719
+ ),
1720
+ migrations.AlterField(
1721
+ model_name="historicalcomplications",
1722
+ name="locale_modified",
1723
+ field=models.CharField(
1724
+ blank=True,
1725
+ default="",
1726
+ help_text="Auto-updated by Modeladmin",
1727
+ max_length=10,
1728
+ verbose_name="Locale modified",
1729
+ ),
1730
+ ),
1731
+ migrations.AlterField(
1732
+ model_name="historicalcomplications",
1733
+ name="report_datetime",
1734
+ field=models.DateTimeField(
1735
+ default=django.utils.timezone.now,
1736
+ help_text="If reporting today, use today's date/time, otherwise use the date/time this information was reported.",
1737
+ validators=[
1738
+ edc_protocol.validators.datetime_not_before_study_start,
1739
+ edc_model.validators.date.datetime_not_future,
1740
+ ],
1741
+ verbose_name="Report Date",
1742
+ ),
1743
+ ),
1744
+ migrations.AlterField(
1745
+ model_name="historicalcomplications",
1746
+ name="revision",
1747
+ field=django_revision.revision_field.RevisionField(
1748
+ blank=True,
1749
+ default="",
1750
+ editable=False,
1751
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
1752
+ max_length=75,
1753
+ verbose_name="Revision",
1754
+ ),
1755
+ ),
1756
+ migrations.AlterField(
1757
+ model_name="historicalcomplicationsglycemia",
1758
+ name="consent_model",
1759
+ field=models.CharField(blank=True, default="", max_length=50),
1760
+ ),
1761
+ migrations.AlterField(
1762
+ model_name="historicalcomplicationsglycemia",
1763
+ name="consent_version",
1764
+ field=models.CharField(blank=True, default="", max_length=10),
1765
+ ),
1766
+ migrations.AlterField(
1767
+ model_name="historicalcomplicationsglycemia",
1768
+ name="crf_status_comments",
1769
+ field=models.TextField(
1770
+ blank=True,
1771
+ default="",
1772
+ help_text="for example, why some data is still pending",
1773
+ verbose_name="Any comments related to status of this CRF",
1774
+ ),
1775
+ ),
1776
+ migrations.AlterField(
1777
+ model_name="historicalcomplicationsglycemia",
1778
+ name="device_created",
1779
+ field=models.CharField(
1780
+ blank=True, default="", max_length=10, verbose_name="Device created"
1781
+ ),
1782
+ ),
1783
+ migrations.AlterField(
1784
+ model_name="historicalcomplicationsglycemia",
1785
+ name="device_modified",
1786
+ field=models.CharField(
1787
+ blank=True, default="", max_length=10, verbose_name="Device modified"
1788
+ ),
1789
+ ),
1790
+ migrations.AlterField(
1791
+ model_name="historicalcomplicationsglycemia",
1792
+ name="locale_created",
1793
+ field=models.CharField(
1794
+ blank=True,
1795
+ default="",
1796
+ help_text="Auto-updated by Modeladmin",
1797
+ max_length=10,
1798
+ verbose_name="Locale created",
1799
+ ),
1800
+ ),
1801
+ migrations.AlterField(
1802
+ model_name="historicalcomplicationsglycemia",
1803
+ name="locale_modified",
1804
+ field=models.CharField(
1805
+ blank=True,
1806
+ default="",
1807
+ help_text="Auto-updated by Modeladmin",
1808
+ max_length=10,
1809
+ verbose_name="Locale modified",
1810
+ ),
1811
+ ),
1812
+ migrations.AlterField(
1813
+ model_name="historicalcomplicationsglycemia",
1814
+ name="report_datetime",
1815
+ field=models.DateTimeField(
1816
+ default=django.utils.timezone.now,
1817
+ help_text="If reporting today, use today's date/time, otherwise use the date/time this information was reported.",
1818
+ validators=[
1819
+ edc_protocol.validators.datetime_not_before_study_start,
1820
+ edc_model.validators.date.datetime_not_future,
1821
+ ],
1822
+ verbose_name="Report Date",
1823
+ ),
1824
+ ),
1825
+ migrations.AlterField(
1826
+ model_name="historicalcomplicationsglycemia",
1827
+ name="revision",
1828
+ field=django_revision.revision_field.RevisionField(
1829
+ blank=True,
1830
+ default="",
1831
+ editable=False,
1832
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
1833
+ max_length=75,
1834
+ verbose_name="Revision",
1835
+ ),
1836
+ ),
1837
+ migrations.AlterField(
1838
+ model_name="historicalconcomitantmedication",
1839
+ name="consent_model",
1840
+ field=models.CharField(blank=True, default="", max_length=50),
1841
+ ),
1842
+ migrations.AlterField(
1843
+ model_name="historicalconcomitantmedication",
1844
+ name="consent_version",
1845
+ field=models.CharField(blank=True, default="", max_length=10),
1846
+ ),
1847
+ migrations.AlterField(
1848
+ model_name="historicalconcomitantmedication",
1849
+ name="crf_status_comments",
1850
+ field=models.TextField(
1851
+ blank=True,
1852
+ default="",
1853
+ help_text="for example, why some data is still pending",
1854
+ verbose_name="Any comments related to status of this CRF",
1855
+ ),
1856
+ ),
1857
+ migrations.AlterField(
1858
+ model_name="historicalconcomitantmedication",
1859
+ name="device_created",
1860
+ field=models.CharField(
1861
+ blank=True, default="", max_length=10, verbose_name="Device created"
1862
+ ),
1863
+ ),
1864
+ migrations.AlterField(
1865
+ model_name="historicalconcomitantmedication",
1866
+ name="device_modified",
1867
+ field=models.CharField(
1868
+ blank=True, default="", max_length=10, verbose_name="Device modified"
1869
+ ),
1870
+ ),
1871
+ migrations.AlterField(
1872
+ model_name="historicalconcomitantmedication",
1873
+ name="locale_created",
1874
+ field=models.CharField(
1875
+ blank=True,
1876
+ default="",
1877
+ help_text="Auto-updated by Modeladmin",
1878
+ max_length=10,
1879
+ verbose_name="Locale created",
1880
+ ),
1881
+ ),
1882
+ migrations.AlterField(
1883
+ model_name="historicalconcomitantmedication",
1884
+ name="locale_modified",
1885
+ field=models.CharField(
1886
+ blank=True,
1887
+ default="",
1888
+ help_text="Auto-updated by Modeladmin",
1889
+ max_length=10,
1890
+ verbose_name="Locale modified",
1891
+ ),
1892
+ ),
1893
+ migrations.AlterField(
1894
+ model_name="historicalconcomitantmedication",
1895
+ name="report_datetime",
1896
+ field=models.DateTimeField(
1897
+ default=django.utils.timezone.now,
1898
+ help_text="If reporting today, use today's date/time, otherwise use the date/time this information was reported.",
1899
+ validators=[
1900
+ edc_protocol.validators.datetime_not_before_study_start,
1901
+ edc_model.validators.date.datetime_not_future,
1902
+ ],
1903
+ verbose_name="Report Date",
1904
+ ),
1905
+ ),
1906
+ migrations.AlterField(
1907
+ model_name="historicalconcomitantmedication",
1908
+ name="revision",
1909
+ field=django_revision.revision_field.RevisionField(
1910
+ blank=True,
1911
+ default="",
1912
+ editable=False,
1913
+ help_text="System field. From git repository (tag:branch:commit), project metadata, project toml, project VERSION, or settings.",
1914
+ max_length=75,
1915
+ verbose_name="Revision",
1916
+ ),
1917
+ ),
1918
+ ]