meta-edc 0.3.15__py3-none-any.whl → 0.3.50__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (333) hide show
  1. meta_ae/action_items.py +2 -2
  2. meta_ae/migrations/0017_auto_20221130_2257.py +12 -7
  3. meta_ae/tests/holidays.csv +1 -1
  4. meta_analytics/README.rst +17 -0
  5. meta_analytics/dataframes/__init__.py +19 -0
  6. meta_analytics/dataframes/constants.py +33 -0
  7. meta_analytics/dataframes/enrolled/__init__.py +1 -0
  8. meta_analytics/dataframes/enrolled/get_glucose_df.py +122 -0
  9. meta_analytics/dataframes/get_eos_df.py +26 -0
  10. meta_analytics/dataframes/get_last_imp_visits_df.py +101 -0
  11. meta_analytics/dataframes/glucose_endpoints/__init__.py +2 -0
  12. meta_analytics/dataframes/glucose_endpoints/endpoint_by_date.py +183 -0
  13. meta_analytics/dataframes/glucose_endpoints/glucose_endpoints_by_date.py +531 -0
  14. meta_analytics/dataframes/screening/__init__.py +2 -0
  15. meta_analytics/dataframes/screening/get_glucose_tested_only_df.py +20 -0
  16. meta_analytics/dataframes/screening/get_screening_df.py +163 -0
  17. meta_analytics/dataframes/utils.py +65 -0
  18. meta_analytics/get_tables.py +81 -0
  19. meta_analytics/tables/__init__.py +2 -0
  20. meta_analytics/tables/eligible.py +106 -0
  21. meta_analytics/tables/enrolled/__init__.py +0 -0
  22. meta_analytics/tables/enrolled/glucose.py +28 -0
  23. meta_analytics/tables/has_dm.py +61 -0
  24. meta_analytics/tests/__init__.py +0 -0
  25. meta_analytics/tests/test_endpoints_by_date.py +94 -0
  26. meta_auth/auth_objects.py +22 -0
  27. meta_auth/auths.py +18 -3
  28. meta_consent/action_items.py +18 -1
  29. meta_consent/admin/__init__.py +1 -0
  30. meta_consent/admin/subject_consent_v1_ext_admin.py +45 -0
  31. meta_consent/baker_recipes.py +1 -0
  32. meta_consent/consents.py +20 -1
  33. meta_consent/constants.py +1 -0
  34. meta_consent/forms/__init__.py +1 -0
  35. meta_consent/forms/subject_consent_v1_ext_form.py +16 -0
  36. meta_consent/locale/lg/LC_MESSAGES/django.po +69 -0
  37. meta_consent/locale/sw/LC_MESSAGES/django.po +12 -12
  38. meta_consent/migrations/0026_historicalsubjectconsentv1ext_subjectconsentv1ext.py +544 -0
  39. meta_consent/migrations/0027_auto_20250111_0344.py +30 -0
  40. meta_consent/models/__init__.py +1 -0
  41. meta_consent/models/signals.py +18 -0
  42. meta_consent/models/subject_consent_v1_ext.py +29 -0
  43. meta_consent/tests/holidays.csv +1 -1
  44. meta_dashboard/locale/lg/LC_MESSAGES/django.po +30 -0
  45. meta_dashboard/locale/sw/LC_MESSAGES/django.po +11 -2
  46. meta_dashboard/navbars.py +3 -1
  47. meta_dashboard/templates/meta_dashboard/bootstrap3/buttons/eligibility_button.html +1 -1
  48. meta_dashboard/templates/meta_dashboard/bootstrap3/buttons/screening_button.html +1 -1
  49. meta_dashboard/templates/meta_dashboard/bootstrap3/subject/dashboard/sidebar.html +24 -0
  50. meta_dashboard/templates/meta_dashboard/bootstrap3/subject/dashboard.html +3 -0
  51. meta_dashboard/templatetags/meta_dashboard_extras.py +1 -1
  52. meta_dashboard/tests/holidays.csv +1 -1
  53. meta_dashboard/tests/urls.py +0 -1
  54. meta_dashboard/view_utils/__init__.py +6 -0
  55. meta_dashboard/view_utils/subject_screening_button.py +2 -2
  56. meta_dashboard/views/subject/dashboard/dashboard_view.py +38 -0
  57. meta_edc/__init__.py +7 -0
  58. meta_edc/celery.py +4 -13
  59. meta_edc/celery_live.py +18 -0
  60. meta_edc/celery_uat.py +24 -0
  61. meta_edc/management/commands/update_forms_reference.py +6 -2
  62. meta_edc/migrations/__init__.py +0 -0
  63. meta_edc/navbars.py +2 -1
  64. meta_edc/settings/debug.py +10 -2
  65. meta_edc/settings/defaults.py +58 -43
  66. meta_edc/templates/meta_edc/bootstrap3/home.html +5 -2
  67. meta_edc/tests/tests/test_endpoints.py +2 -0
  68. meta_edc/urls.py +4 -1
  69. meta_edc/wsgi.py +1 -1
  70. meta_edc/wsgi_live.py +1 -1
  71. meta_edc/wsgi_uat.py +1 -1
  72. meta_edc-0.3.50.dist-info/AUTHORS +0 -0
  73. meta_edc-0.3.50.dist-info/METADATA +766 -0
  74. {meta_edc-0.3.15.dist-info → meta_edc-0.3.50.dist-info}/RECORD +316 -127
  75. {meta_edc-0.3.15.dist-info → meta_edc-0.3.50.dist-info}/WHEEL +1 -1
  76. {meta_edc-0.3.15.dist-info → meta_edc-0.3.50.dist-info}/top_level.txt +1 -0
  77. meta_pharmacy/admin/__init__.py +2 -0
  78. meta_pharmacy/admin/rx_admin.py +75 -0
  79. meta_pharmacy/admin/substitutions_admin.py +67 -0
  80. meta_pharmacy/admin_site.py +9 -0
  81. meta_pharmacy/apps.py +5 -0
  82. meta_pharmacy/constants.py +10 -0
  83. meta_pharmacy/forms/__init__.py +2 -0
  84. meta_pharmacy/forms/rx_form.py +16 -0
  85. meta_pharmacy/forms/substitutions_form.py +54 -0
  86. meta_pharmacy/label_configs.py +30 -0
  87. meta_pharmacy/labels/__init__.py +5 -0
  88. meta_pharmacy/labels/draw_label_for_subject_with_barcode.py +62 -0
  89. meta_pharmacy/labels/draw_label_for_subject_with_code128.py +14 -0
  90. meta_pharmacy/labels/draw_label_with_test_data.py +26 -0
  91. meta_pharmacy/labels/label_data.py +14 -0
  92. meta_pharmacy/labels/print_sheets.py +97 -0
  93. meta_pharmacy/list_data.py +8 -0
  94. meta_pharmacy/management/__init__.py +0 -0
  95. meta_pharmacy/management/commands/__init__.py +0 -0
  96. meta_pharmacy/management/commands/update_initial_pharmacy_data.py +10 -0
  97. meta_pharmacy/migrations/0002_initial.py +695 -0
  98. meta_pharmacy/migrations/0003_auto_20240909_2335.py +64 -0
  99. meta_pharmacy/migrations/0004_alter_historicalsubstitutions_report_datetime_and_more.py +23 -0
  100. meta_pharmacy/migrations/0005_auto_20240911_0352.py +17 -0
  101. meta_pharmacy/migrations/0006_lotnumber_label.py +289 -0
  102. meta_pharmacy/migrations/0007_lotnumber_medication.py +24 -0
  103. meta_pharmacy/migrations/0008_remove_lotnumber_medication_and_more.py +390 -0
  104. meta_pharmacy/migrations/0009_remove_historicalrx_slug.py +17 -0
  105. meta_pharmacy/models/__init__.py +3 -0
  106. meta_pharmacy/models/label_data.py +38 -0
  107. meta_pharmacy/models/rx.py +18 -0
  108. meta_pharmacy/models/rx_label.py +39 -0
  109. meta_pharmacy/models/substitutions.py +88 -0
  110. meta_pharmacy/urls.py +8 -0
  111. meta_pharmacy/utils/__init__.py +1 -0
  112. meta_pharmacy/utils/update_initial_pharmacy_data.py +146 -0
  113. meta_prn/action_items.py +9 -1
  114. meta_prn/admin/pregnancy_notification_admin.py +6 -2
  115. meta_prn/migrations/0034_auto_20220630_1110.py +3 -3
  116. meta_prn/migrations/0035_auto_20220630_1140.py +59 -56
  117. meta_prn/tests/tests/test_dm_referral.py +3 -6
  118. meta_reports/__init__.py +1 -0
  119. meta_reports/admin/__init__.py +15 -0
  120. meta_reports/admin/dbviews/__init__.py +14 -0
  121. meta_reports/admin/dbviews/glucose_summary_admin.py +116 -0
  122. meta_reports/admin/dbviews/imp_substitutions_admin.py +101 -0
  123. meta_reports/admin/dbviews/missing_screening_ogtt_admin/__init__.py +2 -0
  124. meta_reports/admin/dbviews/missing_screening_ogtt_admin/note_model_admin.py +53 -0
  125. meta_reports/admin/dbviews/missing_screening_ogtt_admin/unmanaged_model_admin.py +84 -0
  126. meta_reports/admin/dbviews/on_study_missing_lab_values_admin/__init__.py +1 -0
  127. meta_reports/admin/dbviews/on_study_missing_lab_values_admin/unmanaged_model_admin.py +13 -0
  128. meta_reports/admin/dbviews/on_study_missing_values_admin/__init__.py +1 -0
  129. meta_reports/admin/dbviews/on_study_missing_values_admin/unmanaged_model_admin.py +13 -0
  130. meta_reports/admin/dbviews/patient_history_missing_baseline_cd4_admin.py +58 -0
  131. meta_reports/admin/dbviews/unattended_three_in_row2_admin.py +47 -0
  132. meta_reports/admin/dbviews/unattended_three_in_row_admin.py +35 -0
  133. meta_reports/admin/dbviews/unattended_two_in_row_admin.py +34 -0
  134. meta_reports/admin/endpoints_admin.py +14 -0
  135. meta_reports/admin/endpoints_all_admin.py +13 -0
  136. meta_reports/admin/last_imp_refill_admin.py +181 -0
  137. meta_reports/admin/list_filters.py +30 -0
  138. meta_reports/admin/modeladmin_mixins.py +112 -0
  139. meta_reports/admin_site.py +5 -0
  140. meta_reports/apps.py +1 -16
  141. meta_reports/forms/__init__.py +1 -0
  142. meta_reports/forms/missing_ogtt_note_form.py +33 -0
  143. meta_reports/management/__init__.py +0 -0
  144. meta_reports/management/commands/__init__.py +0 -0
  145. meta_reports/management/commands/generate_endpoints.py +13 -0
  146. meta_reports/migrations/0001_initial.py +87 -0
  147. meta_reports/migrations/0002_patienthistorymissingbaselinecd4_and_more.py +64 -0
  148. meta_reports/migrations/0003_auto_20240618_0505.py +12 -0
  149. meta_reports/migrations/0004_alter_patienthistorymissingbaselinecd4_table.py +17 -0
  150. meta_reports/migrations/0005_endpoints.py +47 -0
  151. meta_reports/migrations/0006_endpoints_baseline_datetime.py +18 -0
  152. meta_reports/migrations/0007_alter_endpoints_endpoint_label_and_more.py +43 -0
  153. meta_reports/migrations/0008_alter_endpoints_endpoint_label.py +18 -0
  154. meta_reports/migrations/0009_alter_endpoints_options.py +21 -0
  155. meta_reports/migrations/0010_alter_patienthistorymissingbaselinecd4_options_and_more.py +49 -0
  156. meta_reports/migrations/0011_auto_20240813_0156.py +54 -0
  157. meta_reports/migrations/0012_auto_20240813_1516.py +48 -0
  158. meta_reports/migrations/0013_auto_20240813_1516.py +48 -0
  159. meta_reports/migrations/0014_auto_20240813_1517.py +48 -0
  160. meta_reports/migrations/0015_alter_endpoints_site.py +22 -0
  161. meta_reports/migrations/0016_missingscreeningogtt.py +47 -0
  162. meta_reports/migrations/0017_auto_20240819_1711.py +166 -0
  163. meta_reports/migrations/0018_auto_20240819_1713.py +54 -0
  164. meta_reports/migrations/0019_auto_20240819_1721.py +54 -0
  165. meta_reports/migrations/0020_auto_20240819_1811.py +54 -0
  166. meta_reports/migrations/0021_auto_20240819_1817.py +54 -0
  167. meta_reports/migrations/0022_auto_20240819_1832.py +54 -0
  168. meta_reports/migrations/0023_endpoints_meta_report_subject_a56b22_idx.py +20 -0
  169. meta_reports/migrations/0024_glucosesummary.py +38 -0
  170. meta_reports/migrations/0025_auto_20240822_0115.py +87 -0
  171. meta_reports/migrations/0026_auto_20240822_0120.py +54 -0
  172. meta_reports/migrations/0027_auto_20240822_0140.py +54 -0
  173. meta_reports/migrations/0028_alter_glucosesummary_options.py +22 -0
  174. meta_reports/migrations/0029_auto_20240822_0149.py +54 -0
  175. meta_reports/migrations/0030_auto_20240822_1637.py +54 -0
  176. meta_reports/migrations/0031_endpointsproxy.py +25 -0
  177. meta_reports/migrations/0032_alter_endpointsproxy_options.py +21 -0
  178. meta_reports/migrations/0033_auto_20240823_0012.py +54 -0
  179. meta_reports/migrations/0034_auto_20240823_1642.py +54 -0
  180. meta_reports/migrations/0035_historicalmissingogttnote_missingogttnote.py +457 -0
  181. meta_reports/migrations/0036_historicalmissingogttnote_fasting_and_more.py +86 -0
  182. meta_reports/migrations/0037_historicalmissingogttnote_result_status_and_more.py +51 -0
  183. meta_reports/migrations/0038_alter_historicalmissingogttnote_fasting_and_more.py +33 -0
  184. meta_reports/migrations/0039_onstudymissingvalues.py +44 -0
  185. meta_reports/migrations/0040_auto_20240824_0412.py +282 -0
  186. meta_reports/migrations/0041_auto_20240828_2229.py +14 -0
  187. meta_reports/migrations/0042_onstudymissinglabvalues.py +43 -0
  188. meta_reports/migrations/0043_auto_20240828_2309.py +88 -0
  189. meta_reports/migrations/0044_auto_20240828_2323.py +93 -0
  190. meta_reports/migrations/0045_auto_20240829_0248.py +54 -0
  191. meta_reports/migrations/0046_auto_20240829_0250.py +54 -0
  192. meta_reports/migrations/0047_impsubstitutions.py +56 -0
  193. meta_reports/migrations/0048_auto_20240909_2338.py +48 -0
  194. meta_reports/migrations/0049_auto_20240911_0327.py +54 -0
  195. meta_reports/migrations/0050_alter_endpoints_created.py +19 -0
  196. meta_reports/migrations/0051_remove_endpoints_baseline_datetime_and_more.py +40 -0
  197. meta_reports/migrations/0052_lastimpvisit.py +57 -0
  198. meta_reports/migrations/0053_rename_lastimpvisit_lastimprefill_and_more.py +31 -0
  199. meta_reports/models/__init__.py +16 -0
  200. meta_reports/models/dbviews/README +14 -0
  201. meta_reports/models/dbviews/__init__.py +9 -0
  202. meta_reports/models/dbviews/glucose_summary/__init__.py +2 -0
  203. meta_reports/models/dbviews/glucose_summary/unmanaged_model.py +35 -0
  204. meta_reports/models/dbviews/glucose_summary/view_definition.py +28 -0
  205. meta_reports/models/dbviews/imp_substitutions/__init__.py +1 -0
  206. meta_reports/models/dbviews/imp_substitutions/unmanaged_model.py +41 -0
  207. meta_reports/models/dbviews/imp_substitutions/view_definition.py +21 -0
  208. meta_reports/models/dbviews/missing_screening_ogtt/__init__.py +2 -0
  209. meta_reports/models/dbviews/missing_screening_ogtt/note_model.py +57 -0
  210. meta_reports/models/dbviews/missing_screening_ogtt/unmanaged_model.py +41 -0
  211. meta_reports/models/dbviews/missing_screening_ogtt/view_definition.py +20 -0
  212. meta_reports/models/dbviews/on_study_missing_lab_values/__init__.py +1 -0
  213. meta_reports/models/dbviews/on_study_missing_lab_values/qa_cases.py +53 -0
  214. meta_reports/models/dbviews/on_study_missing_lab_values/unmanged_model.py +20 -0
  215. meta_reports/models/dbviews/on_study_missing_lab_values/view_definition.py +17 -0
  216. meta_reports/models/dbviews/on_study_missing_values/__init__.py +1 -0
  217. meta_reports/models/dbviews/on_study_missing_values/qa_cases.py +54 -0
  218. meta_reports/models/dbviews/on_study_missing_values/unmanged_model.py +20 -0
  219. meta_reports/models/dbviews/on_study_missing_values/view_definition.py +17 -0
  220. meta_reports/models/dbviews/patient_history_missing_baseline_cd4/__init__.py +1 -0
  221. meta_reports/models/dbviews/patient_history_missing_baseline_cd4/unmanaged_model.py +31 -0
  222. meta_reports/models/dbviews/patient_history_missing_baseline_cd4/view_definition.py +21 -0
  223. meta_reports/models/dbviews/unattended_three_in_row/__init__.py +1 -0
  224. meta_reports/models/dbviews/unattended_three_in_row/unmanaged_model.py +29 -0
  225. meta_reports/models/dbviews/unattended_three_in_row/view_definition.py +31 -0
  226. meta_reports/models/dbviews/unattended_three_in_row2/__init__.py +1 -0
  227. meta_reports/models/dbviews/unattended_three_in_row2/unmanaged_model.py +29 -0
  228. meta_reports/models/dbviews/unattended_three_in_row2/view_definition.py +50 -0
  229. meta_reports/models/dbviews/unattended_two_in_row/__init__.py +1 -0
  230. meta_reports/models/dbviews/unattended_two_in_row/unmanaged_model.py +27 -0
  231. meta_reports/models/dbviews/unattended_two_in_row/view_definition.py +30 -0
  232. meta_reports/models/endpoints.py +31 -0
  233. meta_reports/models/endpoints_proxy.py +11 -0
  234. meta_reports/models/last_imp_refill.py +34 -0
  235. meta_reports/tasks.py +12 -0
  236. meta_reports/templates/meta_reports/columns/subject_identifier_column.html +1 -0
  237. meta_reports/templates/meta_reports/endpoints_all_change_list_note.html +12 -0
  238. meta_reports/templates/meta_reports/endpoints_change_list_note.html +12 -0
  239. meta_reports/tests/test_sql_gen.py +5 -0
  240. meta_reports/urls.py +8 -0
  241. meta_reports/utils.py +0 -0
  242. meta_screening/admin/subject_screening_admin.py +1 -0
  243. meta_screening/migrations/0067_alter_historicalscreeningpartone_report_datetime_and_more.py +84 -0
  244. meta_screening/tests/holidays.csv +1 -1
  245. meta_screening/tests/meta_test_case_mixin.py +15 -0
  246. meta_sites/tests/test_sites.py +1 -1
  247. meta_subject/action_items.py +2 -2
  248. meta_subject/admin/__init__.py +2 -1
  249. meta_subject/admin/birth_outcome_admin.py +2 -0
  250. meta_subject/admin/blood_results/__init__.py +1 -1
  251. meta_subject/admin/blood_results/{blood_results_lipid_admin.py → blood_results_lipids_admin.py} +7 -7
  252. meta_subject/admin/diabetes/__init__.py +1 -1
  253. meta_subject/admin/diabetes/dm_endpoint_admin.py +35 -0
  254. meta_subject/admin/glucose_fbg_admin.py +4 -0
  255. meta_subject/admin/other_arv_regimens_admin.py +2 -0
  256. meta_subject/admin/study_medication_admin.py +10 -0
  257. meta_subject/form_validators/__init__.py +1 -1
  258. meta_subject/form_validators/dm_endpoint_form_validator.py +35 -0
  259. meta_subject/forms/__init__.py +2 -2
  260. meta_subject/forms/blood_results/__init__.py +1 -1
  261. meta_subject/forms/blood_results/{blood_results_lipid_form.py → blood_results_lipids_form.py} +5 -5
  262. meta_subject/forms/diabetes/__init__.py +1 -2
  263. meta_subject/forms/diabetes/dm_endpoint_form.py +13 -0
  264. meta_subject/forms/study_medication_form.py +35 -0
  265. meta_subject/locale/lg/LC_MESSAGES/django.po +470 -0
  266. meta_subject/locale/sw/LC_MESSAGES/django.po +191 -89
  267. meta_subject/metadata_rules/metadata_rules.py +7 -0
  268. meta_subject/metadata_rules/predicates.py +45 -8
  269. meta_subject/migrations/0107_auto_20220415_0043.py +28 -22
  270. meta_subject/migrations/0126_auto_20220719_2142.py +4 -4
  271. meta_subject/migrations/0131_auto_20220722_0411.py +28 -23
  272. meta_subject/migrations/0132_auto_20220722_1825.py +10 -6
  273. meta_subject/migrations/0135_auto_20220722_2212.py +39 -35
  274. meta_subject/migrations/0150_auto_20220914_0039.py +15 -11
  275. meta_subject/migrations/0207_alter_historicalphysicalexam_waist_circumference_and_more.py +46 -0
  276. meta_subject/migrations/0208_birthoutcomes_crf_status_and_more.py +62 -0
  277. meta_subject/migrations/0209_remove_historicaldmdxresult_dm_diagnosis_and_more.py +37 -0
  278. meta_subject/migrations/0210_remove_dmdxresult_dm_diagnosis_and_more.py +123 -0
  279. meta_subject/migrations/0211_dmendpoint_endpoint_reached_and_more.py +45 -0
  280. meta_subject/migrations/0212_auto_20240827_2222.py +23 -0
  281. meta_subject/migrations/0213_rename_bloodresultslipid_bloodresultslipids_and_more.py +35 -0
  282. meta_subject/migrations/0214_historicalstudymedication_stock_codes_and_more.py +44 -0
  283. meta_subject/migrations/0215_alter_historicalstudymedication_stock_codes_and_more.py +46 -0
  284. meta_subject/model_mixins/arv_history_model_mixin.py +3 -3
  285. meta_subject/models/__init__.py +3 -2
  286. meta_subject/models/birth_outcomes.py +6 -1
  287. meta_subject/models/blood_results/__init__.py +1 -1
  288. meta_subject/models/blood_results/{blood_results_lipid.py → blood_results_lipids.py} +3 -3
  289. meta_subject/models/diabetes/__init__.py +1 -2
  290. meta_subject/models/diabetes/dm_endpoint.py +61 -0
  291. meta_subject/models/glucose.py +4 -1
  292. meta_subject/models/physical_exam.py +1 -0
  293. meta_subject/models/signals.py +19 -0
  294. meta_subject/models/todo.txt +1 -1
  295. meta_subject/static/meta_subject/slider.css +1 -1
  296. meta_subject/templates/meta_subject/endpoint_review_instructions.html +1 -1
  297. meta_subject/templates/meta_subject/widgets/slider.html +0 -1
  298. meta_subject/tests/holidays.csv +1 -1
  299. meta_subject/tests/tests/test_medication_adherence.py +5 -1
  300. meta_subject/tests/tests/test_metadata_rules.py +2 -2
  301. meta_subject/tests/tests/test_mnsi.py +212 -121
  302. meta_subject/tests/tests/test_sf12.py +0 -12
  303. meta_visit_schedule/constants.py +4 -0
  304. meta_visit_schedule/tests/tests/test_schedule.py +4 -0
  305. meta_visit_schedule/visit_schedules/phase_three/crfs.py +75 -13
  306. meta_visit_schedule/visit_schedules/phase_three/requisitions.py +12 -0
  307. meta_visit_schedule/visit_schedules/phase_three/schedule.py +65 -2
  308. meta_visit_schedule/visit_schedules/phase_three/schedule_dm_referral.py +1 -1
  309. tests/etc/randomization_list.csv +1 -1
  310. {meta_edc/tests → tests}/etc/randomization_list_phase_three.csv +4 -4
  311. tests/holidays.csv +1 -1
  312. {meta_edc/tests → tests}/test_settings.py +16 -6
  313. meta_edc/tests/etc/user-aes-local.key +0 -1
  314. meta_edc/tests/etc/user-aes-restricted.key +0 -0
  315. meta_edc/tests/etc/user-rsa-local-private.pem +0 -27
  316. meta_edc/tests/etc/user-rsa-local-public.pem +0 -9
  317. meta_edc/tests/etc/user-rsa-restricted-private.pem +0 -27
  318. meta_edc/tests/etc/user-rsa-restricted-public.pem +0 -9
  319. meta_edc/tests/etc/user-salt-local.key +0 -0
  320. meta_edc/tests/etc/user-salt-restricted.key +0 -0
  321. meta_edc-0.3.15.dist-info/METADATA +0 -88
  322. meta_reports/tests/holidays.csv +0 -15
  323. meta_subject/admin/diabetes/dm_diagnosis_admin.py +0 -89
  324. meta_subject/form_validators/dm_diagnosis_form_validator.py +0 -38
  325. meta_subject/form_validators/dm_dx_result_form_validator.py +0 -7
  326. meta_subject/forms/diabetes/dm_diagnosis_form.py +0 -13
  327. meta_subject/forms/diabetes/dm_dx_result_form.py +0 -11
  328. meta_subject/models/diabetes/dm_diagnosis.py +0 -50
  329. meta_subject/models/diabetes/dm_dx_result.py +0 -70
  330. /meta_edc-0.3.15.dist-info/AUTHORS → /meta_analytics/__init__.py +0 -0
  331. /meta_pharmacy/models.py → /meta_analytics/constants.py +0 -0
  332. /meta_reports/models.py → /meta_analytics/notebooks/cleaning/__init__.py +0 -0
  333. {meta_edc-0.3.15.dist-info → meta_edc-0.3.50.dist-info}/LICENSE +0 -0
@@ -0,0 +1,544 @@
1
+ # Generated by Django 5.1.2 on 2025-01-11 00:43
2
+
3
+ import _socket
4
+ import django.db.models.deletion
5
+ import django_audit_fields.fields.hostname_modification_field
6
+ import django_audit_fields.fields.userfield
7
+ import django_audit_fields.fields.uuid_auto_field
8
+ import django_audit_fields.models.audit_model_mixin
9
+ import django_crypto_fields.fields.encrypted_text_field
10
+ import django_revision.revision_field
11
+ import edc_action_item.managers
12
+ import edc_sites.managers
13
+ import edc_utils.date
14
+ import simple_history.models
15
+ import uuid
16
+ from django.conf import settings
17
+ from django.db import migrations, models
18
+
19
+
20
+ class Migration(migrations.Migration):
21
+
22
+ dependencies = [
23
+ ("edc_action_item", "0037_remove_actionitem_reference_model_and_more"),
24
+ ("meta_consent", "0025_alter_historicalsubjectconsent_first_name_and_more"),
25
+ ("sites", "0002_alter_domain_unique"),
26
+ migrations.swappable_dependency(settings.AUTH_USER_MODEL),
27
+ ]
28
+
29
+ operations = [
30
+ migrations.CreateModel(
31
+ name="HistoricalSubjectConsentV1Ext",
32
+ fields=[
33
+ (
34
+ "revision",
35
+ django_revision.revision_field.RevisionField(
36
+ blank=True,
37
+ editable=False,
38
+ help_text="System field. Git repository tag:branch:commit.",
39
+ max_length=75,
40
+ null=True,
41
+ verbose_name="Revision",
42
+ ),
43
+ ),
44
+ (
45
+ "created",
46
+ models.DateTimeField(
47
+ blank=True, default=django_audit_fields.models.audit_model_mixin.utcnow
48
+ ),
49
+ ),
50
+ (
51
+ "modified",
52
+ models.DateTimeField(
53
+ blank=True, default=django_audit_fields.models.audit_model_mixin.utcnow
54
+ ),
55
+ ),
56
+ (
57
+ "user_created",
58
+ django_audit_fields.fields.userfield.UserField(
59
+ blank=True,
60
+ help_text="Updated by admin.save_model",
61
+ max_length=50,
62
+ verbose_name="user created",
63
+ ),
64
+ ),
65
+ (
66
+ "user_modified",
67
+ django_audit_fields.fields.userfield.UserField(
68
+ blank=True,
69
+ help_text="Updated by admin.save_model",
70
+ max_length=50,
71
+ verbose_name="user modified",
72
+ ),
73
+ ),
74
+ (
75
+ "hostname_created",
76
+ models.CharField(
77
+ blank=True,
78
+ default=_socket.gethostname,
79
+ help_text="System field. (modified on create only)",
80
+ max_length=60,
81
+ verbose_name="Hostname created",
82
+ ),
83
+ ),
84
+ (
85
+ "hostname_modified",
86
+ django_audit_fields.fields.hostname_modification_field.HostnameModificationField(
87
+ blank=True,
88
+ help_text="System field. (modified on every save)",
89
+ max_length=50,
90
+ verbose_name="Hostname modified",
91
+ ),
92
+ ),
93
+ (
94
+ "device_created",
95
+ models.CharField(blank=True, max_length=10, verbose_name="Device created"),
96
+ ),
97
+ (
98
+ "device_modified",
99
+ models.CharField(
100
+ blank=True, max_length=10, verbose_name="Device modified"
101
+ ),
102
+ ),
103
+ (
104
+ "locale_created",
105
+ models.CharField(
106
+ blank=True,
107
+ help_text="Auto-updated by Modeladmin",
108
+ max_length=10,
109
+ null=True,
110
+ verbose_name="Locale created",
111
+ ),
112
+ ),
113
+ (
114
+ "locale_modified",
115
+ models.CharField(
116
+ blank=True,
117
+ help_text="Auto-updated by Modeladmin",
118
+ max_length=10,
119
+ null=True,
120
+ verbose_name="Locale modified",
121
+ ),
122
+ ),
123
+ (
124
+ "id",
125
+ django_audit_fields.fields.uuid_auto_field.UUIDAutoField(
126
+ blank=True,
127
+ db_index=True,
128
+ editable=False,
129
+ help_text="System auto field. UUID primary key.",
130
+ ),
131
+ ),
132
+ ("subject_identifier", models.CharField(db_index=True, max_length=50)),
133
+ (
134
+ "subject_identifier_as_pk",
135
+ models.UUIDField(default=uuid.uuid4, editable=False),
136
+ ),
137
+ (
138
+ "subject_identifier_aka",
139
+ models.CharField(
140
+ editable=False,
141
+ help_text="track a previously allocated identifier.",
142
+ max_length=50,
143
+ null=True,
144
+ verbose_name="Subject Identifier a.k.a",
145
+ ),
146
+ ),
147
+ (
148
+ "action_identifier",
149
+ models.CharField(blank=True, db_index=True, max_length=50, null=True),
150
+ ),
151
+ (
152
+ "parent_action_identifier",
153
+ models.CharField(
154
+ blank=True,
155
+ help_text="action identifier that links to parent reference model instance.",
156
+ max_length=30,
157
+ null=True,
158
+ ),
159
+ ),
160
+ (
161
+ "related_action_identifier",
162
+ models.CharField(
163
+ blank=True,
164
+ help_text="action identifier that links to related reference model instance.",
165
+ max_length=30,
166
+ null=True,
167
+ ),
168
+ ),
169
+ ("action_item_reason", models.TextField(editable=False, null=True)),
170
+ ("report_datetime", models.DateTimeField(default=edc_utils.date.get_utcnow)),
171
+ (
172
+ "agrees_to_extension",
173
+ models.CharField(
174
+ choices=[("Yes", "Yes"), ("No", "No")],
175
+ help_text="See above for the definition of extended followup.",
176
+ max_length=15,
177
+ verbose_name="Does the participant agree to extend followup as per the protocol amendment?",
178
+ ),
179
+ ),
180
+ (
181
+ "comment",
182
+ django_crypto_fields.fields.encrypted_text_field.EncryptedTextField(
183
+ blank=True,
184
+ help_text=" (Encryption: AES local)",
185
+ max_length=250,
186
+ null=True,
187
+ verbose_name="Comment",
188
+ ),
189
+ ),
190
+ (
191
+ "consent_extension_version",
192
+ models.CharField(
193
+ editable=False,
194
+ max_length=10,
195
+ null=True,
196
+ verbose_name="Consent extension version",
197
+ ),
198
+ ),
199
+ (
200
+ "consent_extension_definition_name",
201
+ models.CharField(
202
+ editable=False,
203
+ max_length=50,
204
+ null=True,
205
+ verbose_name="Consent extension definition",
206
+ ),
207
+ ),
208
+ (
209
+ "history_id",
210
+ models.UUIDField(
211
+ default=uuid.uuid4, editable=False, primary_key=True, serialize=False
212
+ ),
213
+ ),
214
+ ("history_date", models.DateTimeField(db_index=True)),
215
+ ("history_change_reason", models.CharField(max_length=100, null=True)),
216
+ (
217
+ "history_type",
218
+ models.CharField(
219
+ choices=[("+", "Created"), ("~", "Changed"), ("-", "Deleted")],
220
+ max_length=1,
221
+ ),
222
+ ),
223
+ (
224
+ "action_item",
225
+ models.ForeignKey(
226
+ blank=True,
227
+ db_constraint=False,
228
+ null=True,
229
+ on_delete=django.db.models.deletion.DO_NOTHING,
230
+ related_name="+",
231
+ to="edc_action_item.actionitem",
232
+ ),
233
+ ),
234
+ (
235
+ "history_user",
236
+ models.ForeignKey(
237
+ null=True,
238
+ on_delete=django.db.models.deletion.SET_NULL,
239
+ related_name="+",
240
+ to=settings.AUTH_USER_MODEL,
241
+ ),
242
+ ),
243
+ (
244
+ "parent_action_item",
245
+ models.ForeignKey(
246
+ blank=True,
247
+ db_constraint=False,
248
+ null=True,
249
+ on_delete=django.db.models.deletion.DO_NOTHING,
250
+ related_name="+",
251
+ to="edc_action_item.actionitem",
252
+ ),
253
+ ),
254
+ (
255
+ "related_action_item",
256
+ models.ForeignKey(
257
+ blank=True,
258
+ db_constraint=False,
259
+ null=True,
260
+ on_delete=django.db.models.deletion.DO_NOTHING,
261
+ related_name="+",
262
+ to="edc_action_item.actionitem",
263
+ ),
264
+ ),
265
+ (
266
+ "site",
267
+ models.ForeignKey(
268
+ blank=True,
269
+ db_constraint=False,
270
+ null=True,
271
+ on_delete=django.db.models.deletion.DO_NOTHING,
272
+ related_name="+",
273
+ to="sites.site",
274
+ ),
275
+ ),
276
+ (
277
+ "subject_consent",
278
+ models.ForeignKey(
279
+ blank=True,
280
+ db_constraint=False,
281
+ null=True,
282
+ on_delete=django.db.models.deletion.DO_NOTHING,
283
+ related_name="+",
284
+ to="meta_consent.subjectconsentv1",
285
+ ),
286
+ ),
287
+ ],
288
+ options={
289
+ "verbose_name": "historical Consent V1 Extension",
290
+ "verbose_name_plural": "historical Consent V1 Extension",
291
+ "ordering": ("-history_date", "-history_id"),
292
+ "get_latest_by": ("history_date", "history_id"),
293
+ },
294
+ bases=(simple_history.models.HistoricalChanges, models.Model),
295
+ ),
296
+ migrations.CreateModel(
297
+ name="SubjectConsentV1Ext",
298
+ fields=[
299
+ (
300
+ "revision",
301
+ django_revision.revision_field.RevisionField(
302
+ blank=True,
303
+ editable=False,
304
+ help_text="System field. Git repository tag:branch:commit.",
305
+ max_length=75,
306
+ null=True,
307
+ verbose_name="Revision",
308
+ ),
309
+ ),
310
+ (
311
+ "created",
312
+ models.DateTimeField(
313
+ blank=True, default=django_audit_fields.models.audit_model_mixin.utcnow
314
+ ),
315
+ ),
316
+ (
317
+ "modified",
318
+ models.DateTimeField(
319
+ blank=True, default=django_audit_fields.models.audit_model_mixin.utcnow
320
+ ),
321
+ ),
322
+ (
323
+ "user_created",
324
+ django_audit_fields.fields.userfield.UserField(
325
+ blank=True,
326
+ help_text="Updated by admin.save_model",
327
+ max_length=50,
328
+ verbose_name="user created",
329
+ ),
330
+ ),
331
+ (
332
+ "user_modified",
333
+ django_audit_fields.fields.userfield.UserField(
334
+ blank=True,
335
+ help_text="Updated by admin.save_model",
336
+ max_length=50,
337
+ verbose_name="user modified",
338
+ ),
339
+ ),
340
+ (
341
+ "hostname_created",
342
+ models.CharField(
343
+ blank=True,
344
+ default=_socket.gethostname,
345
+ help_text="System field. (modified on create only)",
346
+ max_length=60,
347
+ verbose_name="Hostname created",
348
+ ),
349
+ ),
350
+ (
351
+ "hostname_modified",
352
+ django_audit_fields.fields.hostname_modification_field.HostnameModificationField(
353
+ blank=True,
354
+ help_text="System field. (modified on every save)",
355
+ max_length=50,
356
+ verbose_name="Hostname modified",
357
+ ),
358
+ ),
359
+ (
360
+ "device_created",
361
+ models.CharField(blank=True, max_length=10, verbose_name="Device created"),
362
+ ),
363
+ (
364
+ "device_modified",
365
+ models.CharField(
366
+ blank=True, max_length=10, verbose_name="Device modified"
367
+ ),
368
+ ),
369
+ (
370
+ "locale_created",
371
+ models.CharField(
372
+ blank=True,
373
+ help_text="Auto-updated by Modeladmin",
374
+ max_length=10,
375
+ null=True,
376
+ verbose_name="Locale created",
377
+ ),
378
+ ),
379
+ (
380
+ "locale_modified",
381
+ models.CharField(
382
+ blank=True,
383
+ help_text="Auto-updated by Modeladmin",
384
+ max_length=10,
385
+ null=True,
386
+ verbose_name="Locale modified",
387
+ ),
388
+ ),
389
+ (
390
+ "id",
391
+ django_audit_fields.fields.uuid_auto_field.UUIDAutoField(
392
+ blank=True,
393
+ editable=False,
394
+ help_text="System auto field. UUID primary key.",
395
+ primary_key=True,
396
+ serialize=False,
397
+ ),
398
+ ),
399
+ ("subject_identifier", models.CharField(max_length=50, unique=True)),
400
+ (
401
+ "subject_identifier_as_pk",
402
+ models.UUIDField(default=uuid.uuid4, editable=False),
403
+ ),
404
+ (
405
+ "subject_identifier_aka",
406
+ models.CharField(
407
+ editable=False,
408
+ help_text="track a previously allocated identifier.",
409
+ max_length=50,
410
+ null=True,
411
+ verbose_name="Subject Identifier a.k.a",
412
+ ),
413
+ ),
414
+ (
415
+ "action_identifier",
416
+ models.CharField(blank=True, max_length=50, null=True, unique=True),
417
+ ),
418
+ (
419
+ "parent_action_identifier",
420
+ models.CharField(
421
+ blank=True,
422
+ help_text="action identifier that links to parent reference model instance.",
423
+ max_length=30,
424
+ null=True,
425
+ ),
426
+ ),
427
+ (
428
+ "related_action_identifier",
429
+ models.CharField(
430
+ blank=True,
431
+ help_text="action identifier that links to related reference model instance.",
432
+ max_length=30,
433
+ null=True,
434
+ ),
435
+ ),
436
+ ("action_item_reason", models.TextField(editable=False, null=True)),
437
+ ("report_datetime", models.DateTimeField(default=edc_utils.date.get_utcnow)),
438
+ (
439
+ "agrees_to_extension",
440
+ models.CharField(
441
+ choices=[("Yes", "Yes"), ("No", "No")],
442
+ help_text="See above for the definition of extended followup.",
443
+ max_length=15,
444
+ verbose_name="Does the participant agree to extend followup as per the protocol amendment?",
445
+ ),
446
+ ),
447
+ (
448
+ "comment",
449
+ django_crypto_fields.fields.encrypted_text_field.EncryptedTextField(
450
+ blank=True,
451
+ help_text=" (Encryption: AES local)",
452
+ max_length=250,
453
+ null=True,
454
+ verbose_name="Comment",
455
+ ),
456
+ ),
457
+ (
458
+ "consent_extension_version",
459
+ models.CharField(
460
+ editable=False,
461
+ max_length=10,
462
+ null=True,
463
+ verbose_name="Consent extension version",
464
+ ),
465
+ ),
466
+ (
467
+ "consent_extension_definition_name",
468
+ models.CharField(
469
+ editable=False,
470
+ max_length=50,
471
+ null=True,
472
+ verbose_name="Consent extension definition",
473
+ ),
474
+ ),
475
+ (
476
+ "action_item",
477
+ models.ForeignKey(
478
+ blank=True,
479
+ null=True,
480
+ on_delete=django.db.models.deletion.PROTECT,
481
+ to="edc_action_item.actionitem",
482
+ ),
483
+ ),
484
+ (
485
+ "parent_action_item",
486
+ models.ForeignKey(
487
+ blank=True,
488
+ null=True,
489
+ on_delete=django.db.models.deletion.PROTECT,
490
+ related_name="+",
491
+ to="edc_action_item.actionitem",
492
+ ),
493
+ ),
494
+ (
495
+ "related_action_item",
496
+ models.ForeignKey(
497
+ blank=True,
498
+ null=True,
499
+ on_delete=django.db.models.deletion.PROTECT,
500
+ related_name="+",
501
+ to="edc_action_item.actionitem",
502
+ ),
503
+ ),
504
+ (
505
+ "site",
506
+ models.ForeignKey(
507
+ null=True,
508
+ on_delete=django.db.models.deletion.PROTECT,
509
+ related_name="+",
510
+ to="sites.site",
511
+ ),
512
+ ),
513
+ (
514
+ "subject_consent",
515
+ models.ForeignKey(
516
+ on_delete=django.db.models.deletion.PROTECT,
517
+ to="meta_consent.subjectconsentv1",
518
+ ),
519
+ ),
520
+ ],
521
+ options={
522
+ "verbose_name": "Consent V1 Extension",
523
+ "verbose_name_plural": "Consent V1 Extension",
524
+ "abstract": False,
525
+ "default_permissions": ("add", "change", "delete", "view", "export", "import"),
526
+ "default_manager_name": "objects",
527
+ "indexes": [
528
+ models.Index(
529
+ fields=[
530
+ "action_identifier",
531
+ "action_item",
532
+ "related_action_item",
533
+ "parent_action_item",
534
+ ],
535
+ name="meta_consen_action__e05e9c_idx",
536
+ )
537
+ ],
538
+ },
539
+ managers=[
540
+ ("on_site", edc_sites.managers.CurrentSiteManager()),
541
+ ("objects", edc_action_item.managers.ActionIdentifierModelManager()),
542
+ ],
543
+ ),
544
+ ]
@@ -0,0 +1,30 @@
1
+ # Generated by Django 5.1.2 on 2025-01-11 00:44
2
+
3
+ from django.db import IntegrityError, migrations, transaction
4
+ from edc_registration.models import RegisteredSubject
5
+ from tqdm import tqdm
6
+
7
+ from meta_consent.action_items import ConsentV1ExtensionAction
8
+
9
+
10
+ def update_action_item(apps, schema_editor):
11
+ total = RegisteredSubject.objects.all().count()
12
+ for obj in tqdm(RegisteredSubject.objects.all(), total=total):
13
+ try:
14
+ with transaction.atomic():
15
+ ConsentV1ExtensionAction(
16
+ subject_identifier=obj.subject_identifier,
17
+ skip_get_current_site=True,
18
+ site_id=obj.site_id,
19
+ )
20
+ except IntegrityError:
21
+ pass
22
+
23
+
24
+ class Migration(migrations.Migration):
25
+
26
+ dependencies = [
27
+ ("meta_consent", "0026_historicalsubjectconsentv1ext_subjectconsentv1ext"),
28
+ ]
29
+
30
+ operations = [migrations.RunPython(update_action_item)]
@@ -1,4 +1,5 @@
1
1
  from .signals import subject_consent_on_post_delete, subject_consent_on_post_save
2
2
  from .subject_consent import SubjectConsent
3
3
  from .subject_consent_v1 import SubjectConsentV1
4
+ from .subject_consent_v1_ext import SubjectConsentV1Ext
4
5
  from .subject_reconsent import SubjectReconsent
@@ -2,6 +2,7 @@ from django.core.exceptions import ValidationError
2
2
  from django.db.models.signals import post_delete, post_save
3
3
  from django.dispatch import receiver
4
4
  from edc_action_item import ActionItemDeleteError, delete_action_item
5
+ from edc_appointment.utils import refresh_appointments
5
6
  from edc_constants.constants import YES
6
7
  from edc_pharmacy.exceptions import PrescriptionAlreadyExists
7
8
  from edc_pharmacy.prescribe import create_prescription
@@ -11,10 +12,12 @@ from edc_visit_schedule.site_visit_schedules import site_visit_schedules
11
12
  from meta_edc.meta_version import get_meta_version
12
13
  from meta_screening.models import SubjectScreening
13
14
  from meta_subject.models import SubjectVisit
15
+ from meta_visit_schedule.constants import SCHEDULE, VISIT_SCHEDULE
14
16
 
15
17
  from ..action_items import ReconsentAction
16
18
  from .subject_consent import SubjectConsent
17
19
  from .subject_consent_v1 import SubjectConsentV1
20
+ from .subject_consent_v1_ext import SubjectConsentV1Ext
18
21
 
19
22
 
20
23
  @receiver(
@@ -83,6 +86,21 @@ def subject_consent_on_post_save(sender, instance, raw, created, **kwargs):
83
86
  pass
84
87
 
85
88
 
89
+ @receiver(
90
+ post_save,
91
+ weak=False,
92
+ sender=SubjectConsentV1Ext,
93
+ dispatch_uid="subject_consent_v1_ext_on_post_save",
94
+ )
95
+ def subject_consent_v1_ext_on_post_save(sender, instance, raw, created, **kwargs):
96
+ if not raw:
97
+ refresh_appointments(
98
+ subject_identifier=instance.subject_identifier,
99
+ visit_schedule_name=VISIT_SCHEDULE,
100
+ schedule_name=SCHEDULE,
101
+ )
102
+
103
+
86
104
  @receiver(
87
105
  post_delete,
88
106
  weak=False,
@@ -0,0 +1,29 @@
1
+ from django.db import models
2
+ from edc_action_item.models import ActionModelMixin
3
+ from edc_consent.model_mixins import ConsentExtensionModelMixin
4
+ from edc_model.models import BaseUuidModel
5
+ from edc_sites.model_mixins import SiteModelMixin
6
+
7
+ from ..constants import CONSENT_V1_EXTENSION_ACTION
8
+ from .subject_consent_v1 import SubjectConsentV1
9
+
10
+
11
+ class SubjectConsentV1Ext(
12
+ ConsentExtensionModelMixin, SiteModelMixin, ActionModelMixin, BaseUuidModel
13
+ ):
14
+ """A consent extension to allow a participant to extend followup
15
+ up to 48 months.
16
+ """
17
+
18
+ subject_consent = models.ForeignKey(SubjectConsentV1, on_delete=models.PROTECT)
19
+
20
+ action_name = CONSENT_V1_EXTENSION_ACTION
21
+
22
+ class Meta(
23
+ ConsentExtensionModelMixin.Meta,
24
+ SiteModelMixin.Meta,
25
+ ActionModelMixin.Meta,
26
+ BaseUuidModel.Meta,
27
+ ):
28
+ verbose_name = "Consent V1 Extension"
29
+ verbose_name_plural = "Consent V1 Extension"
@@ -12,4 +12,4 @@
12
12
  2019-12-01,Mawlid Day,tanzania
13
13
  2019-12-09,Independence Day,tanzania
14
14
  2019-12-25,Christmas Day,tanzania
15
- 2019-12-26,Boxing Day,tanzania
15
+ 2019-12-26,Boxing Day,tanzania
@@ -0,0 +1,30 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the PACKAGE package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ #, fuzzy
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: PACKAGE VERSION\n"
10
+ "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2024-11-19 23:35+0300\n"
12
+ "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
+ "Language-Team: LANGUAGE <LL@li.org>\n"
15
+ "Language: \n"
16
+ "MIME-Version: 1.0\n"
17
+ "Content-Type: text/plain; charset=UTF-8\n"
18
+ "Content-Transfer-Encoding: 8bit\n"
19
+
20
+ #: meta_dashboard/view_utils/subject_screening_button.py:42
21
+ msgid "View"
22
+ msgstr ""
23
+
24
+ #: meta_dashboard/view_utils/subject_screening_button.py:44
25
+ msgid "Edit"
26
+ msgstr ""
27
+
28
+ #: meta_dashboard/views/subject/dashboard/dashboard_view.py:17
29
+ msgid "Audit"
30
+ msgstr ""