meta-edc 1.1.10__tar.gz → 1.1.13__tar.gz
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.
Potentially problematic release.
This version of meta-edc might be problematic. Click here for more details.
- meta_edc-1.1.13/PKG-INFO +175 -0
- meta_edc-1.1.13/README.rst +148 -0
- meta_edc-1.1.13/pyproject.toml +198 -0
- meta_edc-1.1.13/src/meta_ae/action_items.py +318 -0
- meta_edc-1.1.13/src/meta_ae/admin/__init__.py +19 -0
- meta_edc-1.1.13/src/meta_ae/admin/ae_susar_admin.py +13 -0
- meta_edc-1.1.13/src/meta_ae/admin/death_report_admin.py +74 -0
- meta_edc-1.1.13/src/meta_ae/admin/modeladmin_mixins.py +121 -0
- meta_edc-1.1.13/src/meta_ae/baker_recipes.py +39 -0
- meta_edc-1.1.13/src/meta_ae/forms/__init__.py +23 -0
- meta_edc-1.1.13/src/meta_ae/forms/modelform_mixins.py +28 -0
- meta_edc-1.1.13/src/meta_ae/migrations/0001_initial.py +3431 -0
- meta_edc-1.1.13/src/meta_ae/migrations/0006_aelocalreview_aesponsorreview.py +421 -0
- meta_edc-1.1.13/src/meta_ae/migrations/0022_historicalhospitalization_hospitalization.py +590 -0
- meta_edc-1.1.13/src/meta_ae/migrations/0023_alter_aefollowup_action_identifier_and_more.py +2017 -0
- meta_edc-1.1.13/src/meta_ae/model_mixins/__init__.py +4 -0
- meta_edc-1.1.13/src/meta_ae/model_mixins/ae_review_model_mixin.py +87 -0
- meta_edc-1.1.13/src/meta_ae/model_mixins/death_report_model_mixin.py +61 -0
- meta_edc-1.1.13/src/meta_ae/models/__init__.py +23 -0
- meta_edc-1.1.13/src/meta_ae/models/hospitalization.py +21 -0
- meta_edc-1.1.13/src/meta_ae/pdf_reports/__init__.py +4 -0
- meta_edc-1.1.13/src/meta_analytics/.DS_Store +0 -0
- meta_edc-1.1.13/src/meta_analytics/dataframes/__init__.py +46 -0
- meta_edc-1.1.13/src/meta_analytics/dataframes/get_eos_df.py +38 -0
- meta_edc-1.1.13/src/meta_analytics/dataframes/get_glucose_df.py +148 -0
- meta_edc-1.1.13/src/meta_analytics/dataframes/get_glucose_fbg_df.py +26 -0
- meta_edc-1.1.13/src/meta_analytics/dataframes/get_glucose_fbg_ogtt_df.py +21 -0
- meta_edc-1.1.13/src/meta_analytics/dataframes/get_last_imp_visits_df.py +103 -0
- meta_edc-1.1.13/src/meta_analytics/dataframes/glucose_endpoints/__init__.py +4 -0
- meta_edc-1.1.13/src/meta_analytics/dataframes/glucose_endpoints/endpoint_by_date.py +162 -0
- meta_edc-1.1.13/src/meta_analytics/dataframes/glucose_endpoints/glucose_endpoints_by_date.py +347 -0
- meta_edc-1.1.13/src/meta_analytics/dataframes/screening/__init__.py +4 -0
- meta_edc-1.1.13/src/meta_analytics/dataframes/screening/get_glucose_tested_only_df.py +19 -0
- meta_edc-1.1.13/src/meta_analytics/dataframes/screening/get_screening_df.py +160 -0
- meta_edc-1.1.13/src/meta_analytics/dataframes/utils.py +74 -0
- meta_edc-1.1.13/src/meta_analytics/get_tables.py +80 -0
- meta_edc-1.1.13/src/meta_analytics/tables/__init__.py +4 -0
- meta_edc-1.1.13/src/meta_consent/action_items.py +45 -0
- meta_edc-1.1.13/src/meta_consent/admin/__init__.py +9 -0
- meta_edc-1.1.13/src/meta_consent/admin/actions/__init__.py +3 -0
- meta_edc-1.1.13/src/meta_consent/admin/actions/create_missing_prescriptions.py +38 -0
- meta_edc-1.1.13/src/meta_consent/admin/list_filters.py +22 -0
- meta_edc-1.1.13/src/meta_consent/admin/modeladmin_mixins.py +148 -0
- meta_edc-1.1.13/src/meta_consent/admin/subject_consent_v1_ext_admin.py +93 -0
- meta_edc-1.1.13/src/meta_consent/baker_recipes.py +49 -0
- meta_edc-1.1.13/src/meta_consent/form_validators/__init__.py +3 -0
- meta_edc-1.1.13/src/meta_consent/forms/__init__.py +11 -0
- meta_edc-1.1.13/src/meta_consent/forms/subject_consent_v1_ext_form.py +47 -0
- meta_edc-1.1.13/src/meta_consent/forms/subject_reconsent_form.py +37 -0
- meta_edc-1.1.13/src/meta_consent/management/commands/create_missing_prescriptions.py +36 -0
- meta_edc-1.1.13/src/meta_consent/migrations/0001_initial.py +1565 -0
- meta_edc-1.1.13/src/meta_consent/migrations/0024_historicalsubjectconsentv1.py +595 -0
- meta_edc-1.1.13/src/meta_consent/migrations/0026_historicalsubjectconsentv1ext_subjectconsentv1ext.py +535 -0
- meta_edc-1.1.13/src/meta_consent/migrations/0032_alter_historicalsubjectconsent_device_created_and_more.py +678 -0
- meta_edc-1.1.13/src/meta_consent/models/__init__.py +14 -0
- meta_edc-1.1.13/src/meta_consent/models/model_mixins.py +10 -0
- meta_edc-1.1.13/src/meta_consent/models/signals.py +127 -0
- meta_edc-1.1.13/src/meta_consent/models/subject_consent.py +118 -0
- meta_edc-1.1.13/src/meta_consent/models/subject_reconsent.py +100 -0
- meta_edc-1.1.13/src/meta_dashboard/patterns.py +1 -0
- meta_edc-1.1.13/src/meta_dashboard/templatetags/meta_dashboard_extras.py +122 -0
- meta_edc-1.1.13/src/meta_dashboard/view_utils/__init__.py +13 -0
- meta_edc-1.1.13/src/meta_dashboard/view_utils/subject_screening_button.py +114 -0
- meta_edc-1.1.13/src/meta_dashboard/views/__init__.py +12 -0
- meta_edc-1.1.13/src/meta_dashboard/views/ae/__init__.py +4 -0
- meta_edc-1.1.13/src/meta_dashboard/views/ae/ae_listboard_view.py +17 -0
- meta_edc-1.1.13/src/meta_dashboard/views/ae/death_report_listboard_view.py +17 -0
- meta_edc-1.1.13/src/meta_dashboard/views/screening/__init__.py +3 -0
- meta_edc-1.1.13/src/meta_dashboard/views/subject/__init__.py +4 -0
- meta_edc-1.1.13/src/meta_dashboard/views/subject/dashboard/__init__.py +3 -0
- meta_edc-1.1.13/src/meta_dashboard/views/subject/dashboard/dashboard_view.py +48 -0
- meta_edc-1.1.13/src/meta_dashboard/views/subject/listboard/__init__.py +3 -0
- meta_edc-1.1.13/src/meta_edc/__init__.py +10 -0
- meta_edc-1.1.13/src/meta_edc/celery.py +16 -0
- meta_edc-1.1.13/src/meta_edc/celery_live.py +18 -0
- meta_edc-1.1.13/src/meta_edc/celery_uat.py +24 -0
- meta_edc-1.1.13/src/meta_edc/management/commands/update_forms_reference.py +34 -0
- meta_edc-1.1.13/src/meta_edc/settings/debug.py +44 -0
- meta_edc-1.1.13/src/meta_edc/settings/defaults.py +594 -0
- meta_edc-1.1.13/src/meta_edc/settings/live.py +13 -0
- meta_edc-1.1.13/src/meta_edc/settings/logging.py +69 -0
- meta_edc-1.1.13/src/meta_edc/settings/minimal.py +21 -0
- meta_edc-1.1.13/src/meta_edc/settings/uat.py +13 -0
- meta_edc-1.1.13/src/meta_edc/views/__init__.py +3 -0
- meta_edc-1.1.13/src/meta_lists/migrations/0020_alter_abnormalfootappearanceobservations_extra_value_and_more.py +404 -0
- meta_edc-1.1.13/src/meta_pharmacy/admin/__init__.py +7 -0
- meta_edc-1.1.13/src/meta_pharmacy/admin/substitutions_admin.py +67 -0
- meta_edc-1.1.13/src/meta_pharmacy/forms/__init__.py +4 -0
- meta_edc-1.1.13/src/meta_pharmacy/forms/substitutions_form.py +56 -0
- meta_edc-1.1.13/src/meta_pharmacy/labels/__init__.py +7 -0
- meta_edc-1.1.13/src/meta_pharmacy/labels/draw_label_for_subject_with_barcode.py +61 -0
- meta_edc-1.1.13/src/meta_pharmacy/labels/draw_label_with_test_data.py +26 -0
- meta_edc-1.1.13/src/meta_pharmacy/labels/label_data.py +13 -0
- meta_edc-1.1.13/src/meta_pharmacy/labels/print_sheets.py +95 -0
- meta_edc-1.1.13/src/meta_pharmacy/migrations/0002_initial.py +682 -0
- meta_edc-1.1.13/src/meta_pharmacy/migrations/0003_auto_20240909_2335.py +65 -0
- meta_edc-1.1.13/src/meta_pharmacy/migrations/0006_lotnumber_label.py +280 -0
- meta_edc-1.1.13/src/meta_pharmacy/migrations/0008_remove_lotnumber_medication_and_more.py +389 -0
- meta_edc-1.1.13/src/meta_pharmacy/migrations/0010_alter_historicallabeldata_device_created_and_more.py +382 -0
- meta_edc-1.1.13/src/meta_pharmacy/models/__init__.py +10 -0
- meta_edc-1.1.13/src/meta_pharmacy/models/label_data.py +37 -0
- meta_edc-1.1.13/src/meta_pharmacy/models/substitutions.py +88 -0
- meta_edc-1.1.13/src/meta_pharmacy/prepare_meta_pharmacy.py +81 -0
- meta_edc-1.1.13/src/meta_pharmacy/utils/__init__.py +3 -0
- meta_edc-1.1.13/src/meta_pharmacy/utils/update_initial_pharmacy_data.py +146 -0
- meta_edc-1.1.13/src/meta_prn/admin/__init__.py +29 -0
- meta_edc-1.1.13/src/meta_prn/admin/dm_referral_admin.py +50 -0
- meta_edc-1.1.13/src/meta_prn/admin/end_of_study_admin.py +166 -0
- meta_edc-1.1.13/src/meta_prn/admin/loss_to_followup_admin.py +61 -0
- meta_edc-1.1.13/src/meta_prn/admin/off_study_medication_admin.py +76 -0
- meta_edc-1.1.13/src/meta_prn/admin/offschedule_admin.py +46 -0
- meta_edc-1.1.13/src/meta_prn/admin/offschedule_dm_referral_admin.py +49 -0
- meta_edc-1.1.13/src/meta_prn/admin/offschedule_postnatal_admin.py +50 -0
- meta_edc-1.1.13/src/meta_prn/admin/offschedule_pregnancy_admin.py +54 -0
- meta_edc-1.1.13/src/meta_prn/admin/onschedule_admin.py +38 -0
- meta_edc-1.1.13/src/meta_prn/admin/onschedule_dm_referral_admin.py +38 -0
- meta_edc-1.1.13/src/meta_prn/admin/pregnancy_notification_admin.py +70 -0
- meta_edc-1.1.13/src/meta_prn/admin/protocol_incident_admin.py +21 -0
- meta_edc-1.1.13/src/meta_prn/admin/subject_transfer_admin.py +21 -0
- meta_edc-1.1.13/src/meta_prn/baker_recipes.py +28 -0
- meta_edc-1.1.13/src/meta_prn/form_validators/__init__.py +7 -0
- meta_edc-1.1.13/src/meta_prn/form_validators/end_of_study.py +331 -0
- meta_edc-1.1.13/src/meta_prn/forms/__init__.py +23 -0
- meta_edc-1.1.13/src/meta_prn/migrations/0001_initial.py +2668 -0
- meta_edc-1.1.13/src/meta_prn/migrations/0017_auto_20220307_1929.py +664 -0
- meta_edc-1.1.13/src/meta_prn/migrations/0018_auto_20220309_2106.py +889 -0
- meta_edc-1.1.13/src/meta_prn/migrations/0021_auto_20220316_2147.py +1101 -0
- meta_edc-1.1.13/src/meta_prn/migrations/0022_auto_20220318_0133.py +712 -0
- meta_edc-1.1.13/src/meta_prn/migrations/0032_historicalegfrnotification_egfrnotification.py +432 -0
- meta_edc-1.1.13/src/meta_prn/migrations/0038_alter_endofstudy_delivery_date_and_more.py +516 -0
- meta_edc-1.1.13/src/meta_prn/migrations/0041_endofstudy_transfer_date_and_more.py +643 -0
- meta_edc-1.1.13/src/meta_prn/migrations/0057_historicalonscheduledmreferral_and_more.py +1131 -0
- meta_edc-1.1.13/src/meta_prn/migrations/0067_alter_offschedule_managers_and_more.py +2557 -0
- meta_edc-1.1.13/src/meta_prn/models/__init__.py +43 -0
- meta_edc-1.1.13/src/meta_prn/models/offschedule.py +50 -0
- meta_edc-1.1.13/src/meta_prn/models/protocol_incident.py +35 -0
- meta_edc-1.1.13/src/meta_prn/models/subject_transfer.py +18 -0
- meta_edc-1.1.13/src/meta_rando/migrations/0001_initial.py +332 -0
- meta_edc-1.1.13/src/meta_rando/migrations/0006_alter_historicalrandomizationlist_allocated_user_and_more.py +130 -0
- meta_edc-1.1.13/src/meta_reports/__init__.py +3 -0
- meta_edc-1.1.13/src/meta_reports/admin/__init__.py +31 -0
- meta_edc-1.1.13/src/meta_reports/admin/dbviews/__init__.py +27 -0
- meta_edc-1.1.13/src/meta_reports/admin/dbviews/glucose_summary_admin.py +116 -0
- meta_edc-1.1.13/src/meta_reports/admin/dbviews/imp_substitutions_admin.py +102 -0
- meta_edc-1.1.13/src/meta_reports/admin/dbviews/missing_screening_ogtt_admin/__init__.py +7 -0
- meta_edc-1.1.13/src/meta_reports/admin/dbviews/missing_screening_ogtt_admin/note_model_admin.py +77 -0
- meta_edc-1.1.13/src/meta_reports/admin/dbviews/missing_screening_ogtt_admin/unmanaged_model_admin.py +84 -0
- meta_edc-1.1.13/src/meta_reports/admin/dbviews/on_study_missing_lab_values_admin/__init__.py +3 -0
- meta_edc-1.1.13/src/meta_reports/admin/dbviews/on_study_missing_lab_values_admin/unmanaged_model_admin.py +10 -0
- meta_edc-1.1.13/src/meta_reports/admin/dbviews/on_study_missing_values_admin/__init__.py +3 -0
- meta_edc-1.1.13/src/meta_reports/admin/dbviews/patient_history_missing_baseline_cd4_admin.py +58 -0
- meta_edc-1.1.13/src/meta_reports/admin/dbviews/unattended_three_in_row2_admin.py +47 -0
- meta_edc-1.1.13/src/meta_reports/admin/dbviews/unattended_three_in_row_admin.py +35 -0
- meta_edc-1.1.13/src/meta_reports/admin/dbviews/unattended_two_in_row_admin.py +34 -0
- meta_edc-1.1.13/src/meta_reports/admin/endpoints_admin.py +14 -0
- meta_edc-1.1.13/src/meta_reports/admin/last_imp_refill_admin.py +179 -0
- meta_edc-1.1.13/src/meta_reports/admin/list_filters.py +30 -0
- meta_edc-1.1.13/src/meta_reports/admin/modeladmin_mixins.py +105 -0
- meta_edc-1.1.13/src/meta_reports/death_report.py +148 -0
- meta_edc-1.1.13/src/meta_reports/forms/__init__.py +3 -0
- meta_edc-1.1.13/src/meta_reports/forms/missing_ogtt_note_form.py +32 -0
- meta_edc-1.1.13/src/meta_reports/management/commands/generate_endpoints.py +14 -0
- meta_edc-1.1.13/src/meta_reports/migrations/0035_historicalmissingogttnote_missingogttnote.py +448 -0
- meta_edc-1.1.13/src/meta_reports/migrations/0059_alter_endpoints_created_and_more.py +161 -0
- meta_edc-1.1.13/src/meta_reports/models/__init__.py +33 -0
- meta_edc-1.1.13/src/meta_reports/models/dbviews/__init__.py +23 -0
- meta_edc-1.1.13/src/meta_reports/models/dbviews/glucose_summary/__init__.py +4 -0
- meta_edc-1.1.13/src/meta_reports/models/dbviews/glucose_summary/unmanaged_model.py +46 -0
- meta_edc-1.1.13/src/meta_reports/models/dbviews/imp_substitutions/__init__.py +3 -0
- meta_edc-1.1.13/src/meta_reports/models/dbviews/imp_substitutions/view_definition.py +21 -0
- meta_edc-1.1.13/src/meta_reports/models/dbviews/missing_screening_ogtt/__init__.py +4 -0
- meta_edc-1.1.13/src/meta_reports/models/dbviews/missing_screening_ogtt/note_model.py +57 -0
- meta_edc-1.1.13/src/meta_reports/models/dbviews/missing_screening_ogtt/unmanaged_model.py +42 -0
- meta_edc-1.1.13/src/meta_reports/models/dbviews/on_study_missing_lab_values/__init__.py +3 -0
- meta_edc-1.1.13/src/meta_reports/models/dbviews/on_study_missing_lab_values/qa_cases.py +55 -0
- meta_edc-1.1.13/src/meta_reports/models/dbviews/on_study_missing_values/__init__.py +3 -0
- meta_edc-1.1.13/src/meta_reports/models/dbviews/patient_history_missing_baseline_cd4/__init__.py +3 -0
- meta_edc-1.1.13/src/meta_reports/models/dbviews/unattended_three_in_row/__init__.py +3 -0
- meta_edc-1.1.13/src/meta_reports/models/dbviews/unattended_three_in_row2/__init__.py +3 -0
- meta_edc-1.1.13/src/meta_reports/models/dbviews/unattended_two_in_row/__init__.py +3 -0
- meta_edc-1.1.13/src/meta_reports/models/endpoints.py +34 -0
- meta_edc-1.1.13/src/meta_reports/models/last_imp_refill.py +33 -0
- meta_edc-1.1.13/src/meta_reports/pdf_report.py +68 -0
- meta_edc-1.1.13/src/meta_reports/tasks.py +13 -0
- meta_edc-1.1.13/src/meta_screening/admin/__init__.py +13 -0
- meta_edc-1.1.13/src/meta_screening/admin/fieldsets.py +168 -0
- meta_edc-1.1.13/src/meta_screening/admin/list_filters.py +87 -0
- meta_edc-1.1.13/src/meta_screening/admin/screening_part_one_admin.py +41 -0
- meta_edc-1.1.13/src/meta_screening/admin/screening_part_three_admin.py +82 -0
- meta_edc-1.1.13/src/meta_screening/admin/screening_part_two_admin.py +48 -0
- meta_edc-1.1.13/src/meta_screening/admin/subject_refusal_admin.py +75 -0
- meta_edc-1.1.13/src/meta_screening/admin/subject_screening_admin.py +208 -0
- meta_edc-1.1.13/src/meta_screening/baker_recipes.py +59 -0
- meta_edc-1.1.13/src/meta_screening/eligibility/__init__.py +17 -0
- meta_edc-1.1.13/src/meta_screening/eligibility/eligibility.py +218 -0
- meta_edc-1.1.13/src/meta_screening/eligibility/eligibility_part_three/__init__.py +3 -0
- meta_edc-1.1.13/src/meta_screening/eligibility/eligibility_part_three/base_eligibility_part_three.py +158 -0
- meta_edc-1.1.13/src/meta_screening/eligibility/eligibility_part_three/eligibility_part_three_phase_three.py +124 -0
- meta_edc-1.1.13/src/meta_screening/form_validators/__init__.py +13 -0
- meta_edc-1.1.13/src/meta_screening/forms/__init__.py +38 -0
- meta_edc-1.1.13/src/meta_screening/forms/field_lists.py +159 -0
- meta_edc-1.1.13/src/meta_screening/forms/screening_part_one_form.py +25 -0
- meta_edc-1.1.13/src/meta_screening/forms/screening_part_three_form.py +30 -0
- meta_edc-1.1.13/src/meta_screening/forms/screening_part_two_form.py +18 -0
- meta_edc-1.1.13/src/meta_screening/forms/subject_refusal_form.py +17 -0
- meta_edc-1.1.13/src/meta_screening/forms/subject_screening_form.py +17 -0
- meta_edc-1.1.13/src/meta_screening/migrations/0001_initial.py +4574 -0
- meta_edc-1.1.13/src/meta_screening/migrations/0010_auto_20191106_0828.py +942 -0
- meta_edc-1.1.13/src/meta_screening/migrations/0068_alter_historicalscreeningpartone_acute_condition_and_more.py +1579 -0
- meta_edc-1.1.13/src/meta_screening/model_mixins/__init__.py +13 -0
- meta_edc-1.1.13/src/meta_screening/model_mixins/eligibility_model_mixin.py +50 -0
- meta_edc-1.1.13/src/meta_screening/model_mixins/part_one_fields_model_mixin.py +116 -0
- meta_edc-1.1.13/src/meta_screening/model_mixins/part_three_fields_model_mixin.py +183 -0
- meta_edc-1.1.13/src/meta_screening/model_mixins/part_two_fields_model_mixin.py +220 -0
- meta_edc-1.1.13/src/meta_screening/models/__init__.py +14 -0
- meta_edc-1.1.13/src/meta_screening/models/icp_referral.py +118 -0
- meta_edc-1.1.13/src/meta_screening/models/signals.py +23 -0
- meta_edc-1.1.13/src/meta_screening/models/subject_refusal.py +65 -0
- meta_edc-1.1.13/src/meta_screening/models/subject_screening.py +70 -0
- meta_edc-1.1.13/src/meta_subject/action_items.py +200 -0
- meta_edc-1.1.13/src/meta_subject/admin/__init__.py +75 -0
- meta_edc-1.1.13/src/meta_subject/admin/birth_outcome_admin.py +94 -0
- meta_edc-1.1.13/src/meta_subject/admin/blood_results/__init__.py +15 -0
- meta_edc-1.1.13/src/meta_subject/admin/blood_results/blood_results_fbc_admin.py +22 -0
- meta_edc-1.1.13/src/meta_subject/admin/blood_results/blood_results_hba1c_admin.py +26 -0
- meta_edc-1.1.13/src/meta_subject/admin/blood_results/blood_results_ins_admin.py +24 -0
- meta_edc-1.1.13/src/meta_subject/admin/blood_results/blood_results_lft_admin.py +24 -0
- meta_edc-1.1.13/src/meta_subject/admin/blood_results/blood_results_lipids_admin.py +24 -0
- meta_edc-1.1.13/src/meta_subject/admin/blood_results/blood_results_rft_admin.py +125 -0
- meta_edc-1.1.13/src/meta_subject/admin/complications_glycemia_admin.py +131 -0
- meta_edc-1.1.13/src/meta_subject/admin/delivery_admin.py +116 -0
- meta_edc-1.1.13/src/meta_subject/admin/diabetes/__init__.py +4 -0
- meta_edc-1.1.13/src/meta_subject/admin/diabetes/dm_endpoint_admin.py +35 -0
- meta_edc-1.1.13/src/meta_subject/admin/diabetes/dm_followup_admin.py +97 -0
- meta_edc-1.1.13/src/meta_subject/admin/egfr_drop_notification_admin.py +19 -0
- meta_edc-1.1.13/src/meta_subject/admin/followup_examination_admin.py +164 -0
- meta_edc-1.1.13/src/meta_subject/admin/followup_vitals_admin.py +73 -0
- meta_edc-1.1.13/src/meta_subject/admin/glucose_admin.py +96 -0
- meta_edc-1.1.13/src/meta_subject/admin/glucose_fbg_admin.py +80 -0
- meta_edc-1.1.13/src/meta_subject/admin/health_economics/__init__.py +4 -0
- meta_edc-1.1.13/src/meta_subject/admin/health_economics/health_economics_simple_admin.py +34 -0
- meta_edc-1.1.13/src/meta_subject/admin/health_economics/health_economics_update_admin.py +101 -0
- meta_edc-1.1.13/src/meta_subject/admin/hepatitis_test_admin.py +55 -0
- meta_edc-1.1.13/src/meta_subject/admin/list_filters.py +76 -0
- meta_edc-1.1.13/src/meta_subject/admin/mnsi_admin.py +54 -0
- meta_edc-1.1.13/src/meta_subject/admin/other_arv_regimens_admin.py +53 -0
- meta_edc-1.1.13/src/meta_subject/admin/patient_history_admin.py +49 -0
- meta_edc-1.1.13/src/meta_subject/admin/physical_exam_admin.py +62 -0
- meta_edc-1.1.13/src/meta_subject/admin/pregnancy_update_admin.py +33 -0
- meta_edc-1.1.13/src/meta_subject/admin/study_medication_admin.py +169 -0
- meta_edc-1.1.13/src/meta_subject/admin/subject_requisition_admin.py +52 -0
- meta_edc-1.1.13/src/meta_subject/admin/subject_visit_admin.py +46 -0
- meta_edc-1.1.13/src/meta_subject/admin/subject_visit_missed_admin.py +45 -0
- meta_edc-1.1.13/src/meta_subject/admin/urine_dipstick_test_admin.py +40 -0
- meta_edc-1.1.13/src/meta_subject/admin/urine_pregnancy_admin.py +37 -0
- meta_edc-1.1.13/src/meta_subject/baker_recipes.py +111 -0
- meta_edc-1.1.13/src/meta_subject/form_validators/__init__.py +19 -0
- meta_edc-1.1.13/src/meta_subject/form_validators/delivery_form_validator.py +83 -0
- meta_edc-1.1.13/src/meta_subject/form_validators/dm_endpoint_form_validator.py +37 -0
- meta_edc-1.1.13/src/meta_subject/form_validators/dm_followup_form_validator.py +236 -0
- meta_edc-1.1.13/src/meta_subject/form_validators/glucose_form_validator.py +96 -0
- meta_edc-1.1.13/src/meta_subject/forms/__init__.py +78 -0
- meta_edc-1.1.13/src/meta_subject/forms/blood_results/__init__.py +15 -0
- meta_edc-1.1.13/src/meta_subject/forms/blood_results/blood_results_rft_form.py +95 -0
- meta_edc-1.1.13/src/meta_subject/forms/diabetes/__init__.py +4 -0
- meta_edc-1.1.13/src/meta_subject/forms/diabetes/dm_followup_form.py +25 -0
- meta_edc-1.1.13/src/meta_subject/forms/followup_vitals_form.py +39 -0
- meta_edc-1.1.13/src/meta_subject/forms/health_economics/__init__.py +4 -0
- meta_edc-1.1.13/src/meta_subject/forms/next_appointment_form.py +36 -0
- meta_edc-1.1.13/src/meta_subject/forms/slider_widget.py +25 -0
- meta_edc-1.1.13/src/meta_subject/forms/study_medication_form.py +82 -0
- meta_edc-1.1.13/src/meta_subject/management/commands/create_missing_refills.py +69 -0
- meta_edc-1.1.13/src/meta_subject/management/commands/create_missing_rx.py +43 -0
- meta_edc-1.1.13/src/meta_subject/management/commands/missed.py +251 -0
- meta_edc-1.1.13/src/meta_subject/metadata_rules/__init__.py +3 -0
- meta_edc-1.1.13/src/meta_subject/metadata_rules/predicates.py +284 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0001_initial.py +10041 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0002_auto_20191021_0353.py +722 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0012_auto_20200118_2334.py +407 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0014_auto_20200120_1622.py +803 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0018_coronakap_historicalcoronakap.py +1459 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0033_auto_20200516_2356.py +477 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0038_auto_20200520_0020.py +675 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0040_auto_20200527_2155.py +532 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0045_auto_20200530_1801.py +37 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0051_auto_20200617_2117.py +515 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0063_auto_20210715_0337.py +532 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0066_auto_20210721_0335.py +702 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0067_auto_20210726_0340.py +1183 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0068_auto_20210728_1809.py +1011 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0072_auto_20210805_1545.py +663 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0073_auto_20210809_0055.py +1068 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0077_auto_20210809_2323.py +214 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0082_auto_20210823_1612.py +307 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0083_auto_20210823_1620.py +365 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0088_auto_20210924_0027.py +704 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0090_auto_20210924_0424.py +415 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0093_auto_20211117_0352.py +819 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0095_auto_20220128_1719.py +564 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0098_auto_20220309_2106.py +540 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0101_auto_20220316_2147.py +1554 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0115_historicalegfrnotification_egfrnotification.py +453 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0164_dmreferralfollowup_historicaldmreferralfollowup.py +709 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0172_remove_historicalbloodresultsglu_action_item_and_more.py +67 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0177_alter_bloodresultslft_alp_value_and_more.py +91 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0178_historicalhealtheconomicsupdate_and_more.py +719 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0186_healtheconomicsupdate_singleton_field_and_more.py +54 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0187_dmdiagnosis_historicaldmdiagnosis_dmdxresult_and_more.py +442 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0188_historicaldmdxresult_dmdxresult.py +394 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0209_remove_historicaldmdxresult_dm_diagnosis_and_more.py +36 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0216_historicalnextappointment_nextappointment.py +553 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0220_historicalbloodresultsgludummy_bloodresultsgludummy.py +825 -0
- meta_edc-1.1.13/src/meta_subject/migrations/0228_bloodresultshba1c_hba1c_datetime_and_more.py +9297 -0
- meta_edc-1.1.13/src/meta_subject/model_mixins/__init__.py +13 -0
- meta_edc-1.1.13/src/meta_subject/model_mixins/search_slug_model_mixin.py +10 -0
- meta_edc-1.1.13/src/meta_subject/model_mixins/vitals_fields_model_mixin.py +76 -0
- meta_edc-1.1.13/src/meta_subject/models/__init__.py +98 -0
- meta_edc-1.1.13/src/meta_subject/models/birth_outcomes.py +101 -0
- meta_edc-1.1.13/src/meta_subject/models/blood_results/__init__.py +18 -0
- meta_edc-1.1.13/src/meta_subject/models/delivery.py +163 -0
- meta_edc-1.1.13/src/meta_subject/models/diabetes/__init__.py +4 -0
- meta_edc-1.1.13/src/meta_subject/models/diabetes/dm_endpoint.py +61 -0
- meta_edc-1.1.13/src/meta_subject/models/diabetes/dm_followup.py +215 -0
- meta_edc-1.1.13/src/meta_subject/models/diet_and_lifestyle.py +32 -0
- meta_edc-1.1.13/src/meta_subject/models/followup_examination.py +254 -0
- meta_edc-1.1.13/src/meta_subject/models/glucose.py +78 -0
- meta_edc-1.1.13/src/meta_subject/models/glucose_fbg.py +60 -0
- meta_edc-1.1.13/src/meta_subject/models/health_economics/__init__.py +5 -0
- meta_edc-1.1.13/src/meta_subject/models/health_economics/health_economics.py +319 -0
- meta_edc-1.1.13/src/meta_subject/models/health_economics/health_economics_update.py +97 -0
- meta_edc-1.1.13/src/meta_subject/models/hepatitis_test.py +60 -0
- meta_edc-1.1.13/src/meta_subject/models/other_arv_regimens_detail.py +60 -0
- meta_edc-1.1.13/src/meta_subject/models/patient_history.py +146 -0
- meta_edc-1.1.13/src/meta_subject/models/physical_exam.py +63 -0
- meta_edc-1.1.13/src/meta_subject/models/pregnancy_update.py +30 -0
- meta_edc-1.1.13/src/meta_subject/models/signals.py +128 -0
- meta_edc-1.1.13/src/meta_subject/models/subject_visit.py +69 -0
- meta_edc-1.1.13/src/meta_subject/models/urine_dipstick_test.py +42 -0
- meta_edc-1.1.13/src/meta_subject/models/urine_pregnancy.py +44 -0
- meta_edc-1.1.13/src/meta_visit_schedule/visit_schedules/__init__.py +13 -0
- meta_edc-1.1.13/src/meta_visit_schedule/visit_schedules/phase_three/__init__.py +4 -0
- meta_edc-1.1.13/src/meta_visit_schedule/visit_schedules/phase_three/schedule.py +365 -0
- meta_edc-1.1.13/src/meta_visit_schedule/visit_schedules/phase_three/schedule_dm_referral.py +59 -0
- meta_edc-1.1.13/src/meta_visit_schedule/visit_schedules/phase_three/schedule_pregnancy.py +38 -0
- meta_edc-1.1.10/PKG-INFO +0 -89
- meta_edc-1.1.10/README.rst +0 -65
- meta_edc-1.1.10/locale/lg/LC_MESSAGES/django.po +0 -44
- meta_edc-1.1.10/locale/sw/LC_MESSAGES/django.po +0 -44
- meta_edc-1.1.10/meta_ae/action_items.py +0 -317
- meta_edc-1.1.10/meta_ae/admin/__init__.py +0 -8
- meta_edc-1.1.10/meta_ae/admin/ae_susar_admin.py +0 -13
- meta_edc-1.1.10/meta_ae/admin/death_report_admin.py +0 -74
- meta_edc-1.1.10/meta_ae/admin/modeladmin_mixins.py +0 -123
- meta_edc-1.1.10/meta_ae/baker_recipes.py +0 -39
- meta_edc-1.1.10/meta_ae/forms/__init__.py +0 -10
- meta_edc-1.1.10/meta_ae/forms/modelform_mixins.py +0 -28
- meta_edc-1.1.10/meta_ae/migrations/0001_initial.py +0 -3431
- meta_edc-1.1.10/meta_ae/migrations/0006_aelocalreview_aesponsorreview.py +0 -421
- meta_edc-1.1.10/meta_ae/migrations/0022_historicalhospitalization_hospitalization.py +0 -598
- meta_edc-1.1.10/meta_ae/model_mixins/__init__.py +0 -2
- meta_edc-1.1.10/meta_ae/model_mixins/ae_review_model_mixin.py +0 -87
- meta_edc-1.1.10/meta_ae/model_mixins/death_report_model_mixin.py +0 -61
- meta_edc-1.1.10/meta_ae/models/__init__.py +0 -10
- meta_edc-1.1.10/meta_ae/models/hospitalization.py +0 -21
- meta_edc-1.1.10/meta_ae/pdf_reports/__init__.py +0 -2
- meta_edc-1.1.10/meta_analytics/.ipynb_checkpoints/get_tables-checkpoint.py +0 -105
- meta_edc-1.1.10/meta_analytics/dataframes/__init__.py +0 -22
- meta_edc-1.1.10/meta_analytics/dataframes/get_eos_df.py +0 -39
- meta_edc-1.1.10/meta_analytics/dataframes/get_glucose_df.py +0 -149
- meta_edc-1.1.10/meta_analytics/dataframes/get_glucose_fbg_df.py +0 -27
- meta_edc-1.1.10/meta_analytics/dataframes/get_glucose_fbg_ogtt_df.py +0 -22
- meta_edc-1.1.10/meta_analytics/dataframes/get_last_imp_visits_df.py +0 -104
- meta_edc-1.1.10/meta_analytics/dataframes/glucose_endpoints/__init__.py +0 -2
- meta_edc-1.1.10/meta_analytics/dataframes/glucose_endpoints/endpoint_by_date.py +0 -169
- meta_edc-1.1.10/meta_analytics/dataframes/glucose_endpoints/glucose_endpoints_by_date.py +0 -348
- meta_edc-1.1.10/meta_analytics/dataframes/screening/__init__.py +0 -2
- meta_edc-1.1.10/meta_analytics/dataframes/screening/get_glucose_tested_only_df.py +0 -20
- meta_edc-1.1.10/meta_analytics/dataframes/screening/get_screening_df.py +0 -164
- meta_edc-1.1.10/meta_analytics/dataframes/utils.py +0 -79
- meta_edc-1.1.10/meta_analytics/get_tables.py +0 -81
- meta_edc-1.1.10/meta_analytics/tables/__init__.py +0 -2
- meta_edc-1.1.10/meta_consent/action_items.py +0 -44
- meta_edc-1.1.10/meta_consent/admin/__init__.py +0 -3
- meta_edc-1.1.10/meta_consent/admin/actions/__init__.py +0 -1
- meta_edc-1.1.10/meta_consent/admin/actions/create_missing_prescriptions.py +0 -38
- meta_edc-1.1.10/meta_consent/admin/list_filters.py +0 -22
- meta_edc-1.1.10/meta_consent/admin/modeladmin_mixins.py +0 -149
- meta_edc-1.1.10/meta_consent/admin/subject_consent_v1_ext_admin.py +0 -93
- meta_edc-1.1.10/meta_consent/baker_recipes.py +0 -50
- meta_edc-1.1.10/meta_consent/form_validators/__init__.py +0 -1
- meta_edc-1.1.10/meta_consent/forms/__init__.py +0 -4
- meta_edc-1.1.10/meta_consent/forms/subject_consent_v1_ext_form.py +0 -48
- meta_edc-1.1.10/meta_consent/forms/subject_reconsent_form.py +0 -37
- meta_edc-1.1.10/meta_consent/management/commands/create_missing_prescriptions.py +0 -34
- meta_edc-1.1.10/meta_consent/migrations/0001_initial.py +0 -1565
- meta_edc-1.1.10/meta_consent/migrations/0024_historicalsubjectconsentv1.py +0 -600
- meta_edc-1.1.10/meta_consent/migrations/0026_historicalsubjectconsentv1ext_subjectconsentv1ext.py +0 -544
- meta_edc-1.1.10/meta_consent/models/__init__.py +0 -5
- meta_edc-1.1.10/meta_consent/models/model_mixins.py +0 -11
- meta_edc-1.1.10/meta_consent/models/signals.py +0 -128
- meta_edc-1.1.10/meta_consent/models/subject_consent.py +0 -118
- meta_edc-1.1.10/meta_consent/models/subject_reconsent.py +0 -100
- meta_edc-1.1.10/meta_dashboard/patterns.py +0 -1
- meta_edc-1.1.10/meta_dashboard/templatetags/meta_dashboard_extras.py +0 -122
- meta_edc-1.1.10/meta_dashboard/view_utils/__init__.py +0 -6
- meta_edc-1.1.10/meta_dashboard/view_utils/subject_screening_button.py +0 -121
- meta_edc-1.1.10/meta_dashboard/views/__init__.py +0 -4
- meta_edc-1.1.10/meta_dashboard/views/ae/__init__.py +0 -2
- meta_edc-1.1.10/meta_dashboard/views/ae/ae_listboard_view.py +0 -17
- meta_edc-1.1.10/meta_dashboard/views/ae/death_report_listboard_view.py +0 -17
- meta_edc-1.1.10/meta_dashboard/views/screening/__init__.py +0 -1
- meta_edc-1.1.10/meta_dashboard/views/subject/__init__.py +0 -2
- meta_edc-1.1.10/meta_dashboard/views/subject/dashboard/__init__.py +0 -1
- meta_edc-1.1.10/meta_dashboard/views/subject/dashboard/dashboard_view.py +0 -48
- meta_edc-1.1.10/meta_dashboard/views/subject/listboard/__init__.py +0 -1
- meta_edc-1.1.10/meta_edc/.DS_Store +0 -0
- meta_edc-1.1.10/meta_edc/__init__.py +0 -10
- meta_edc-1.1.10/meta_edc/celery.py +0 -16
- meta_edc-1.1.10/meta_edc/celery_live.py +0 -18
- meta_edc-1.1.10/meta_edc/celery_uat.py +0 -24
- meta_edc-1.1.10/meta_edc/management/commands/update_forms_reference.py +0 -36
- meta_edc-1.1.10/meta_edc/settings/debug.py +0 -43
- meta_edc-1.1.10/meta_edc/settings/defaults.py +0 -594
- meta_edc-1.1.10/meta_edc/settings/live.py +0 -11
- meta_edc-1.1.10/meta_edc/settings/logging.py +0 -69
- meta_edc-1.1.10/meta_edc/settings/minimal.py +0 -22
- meta_edc-1.1.10/meta_edc/settings/uat.py +0 -11
- meta_edc-1.1.10/meta_edc/views/__init__.py +0 -1
- meta_edc-1.1.10/meta_pharmacy/admin/__init__.py +0 -2
- meta_edc-1.1.10/meta_pharmacy/admin/substitutions_admin.py +0 -67
- meta_edc-1.1.10/meta_pharmacy/forms/__init__.py +0 -2
- meta_edc-1.1.10/meta_pharmacy/forms/substitutions_form.py +0 -54
- meta_edc-1.1.10/meta_pharmacy/labels/__init__.py +0 -5
- meta_edc-1.1.10/meta_pharmacy/labels/draw_label_for_subject_with_barcode.py +0 -62
- meta_edc-1.1.10/meta_pharmacy/labels/draw_label_with_test_data.py +0 -26
- meta_edc-1.1.10/meta_pharmacy/labels/label_data.py +0 -14
- meta_edc-1.1.10/meta_pharmacy/labels/print_sheets.py +0 -97
- meta_edc-1.1.10/meta_pharmacy/migrations/0002_initial.py +0 -695
- meta_edc-1.1.10/meta_pharmacy/migrations/0003_auto_20240909_2335.py +0 -64
- meta_edc-1.1.10/meta_pharmacy/migrations/0006_lotnumber_label.py +0 -289
- meta_edc-1.1.10/meta_pharmacy/migrations/0008_remove_lotnumber_medication_and_more.py +0 -390
- meta_edc-1.1.10/meta_pharmacy/models/__init__.py +0 -3
- meta_edc-1.1.10/meta_pharmacy/models/label_data.py +0 -38
- meta_edc-1.1.10/meta_pharmacy/models/substitutions.py +0 -88
- meta_edc-1.1.10/meta_pharmacy/prepare_meta_pharmacy.py +0 -81
- meta_edc-1.1.10/meta_pharmacy/utils/__init__.py +0 -1
- meta_edc-1.1.10/meta_pharmacy/utils/update_initial_pharmacy_data.py +0 -146
- meta_edc-1.1.10/meta_prn/admin/__init__.py +0 -13
- meta_edc-1.1.10/meta_prn/admin/dm_referral_admin.py +0 -49
- meta_edc-1.1.10/meta_prn/admin/end_of_study_admin.py +0 -167
- meta_edc-1.1.10/meta_prn/admin/loss_to_followup_admin.py +0 -60
- meta_edc-1.1.10/meta_prn/admin/off_study_medication_admin.py +0 -77
- meta_edc-1.1.10/meta_prn/admin/offschedule_admin.py +0 -47
- meta_edc-1.1.10/meta_prn/admin/offschedule_dm_referral_admin.py +0 -49
- meta_edc-1.1.10/meta_prn/admin/offschedule_postnatal_admin.py +0 -50
- meta_edc-1.1.10/meta_prn/admin/offschedule_pregnancy_admin.py +0 -53
- meta_edc-1.1.10/meta_prn/admin/onschedule_admin.py +0 -39
- meta_edc-1.1.10/meta_prn/admin/onschedule_dm_referral_admin.py +0 -39
- meta_edc-1.1.10/meta_prn/admin/pregnancy_notification_admin.py +0 -71
- meta_edc-1.1.10/meta_prn/admin/protocol_incident_admin.py +0 -21
- meta_edc-1.1.10/meta_prn/admin/subject_transfer_admin.py +0 -21
- meta_edc-1.1.10/meta_prn/baker_recipes.py +0 -28
- meta_edc-1.1.10/meta_prn/form_validators/__init__.py +0 -2
- meta_edc-1.1.10/meta_prn/form_validators/end_of_study.py +0 -331
- meta_edc-1.1.10/meta_prn/forms/__init__.py +0 -10
- meta_edc-1.1.10/meta_prn/migrations/0001_initial.py +0 -2668
- meta_edc-1.1.10/meta_prn/migrations/0017_auto_20220307_1929.py +0 -664
- meta_edc-1.1.10/meta_prn/migrations/0018_auto_20220309_2106.py +0 -889
- meta_edc-1.1.10/meta_prn/migrations/0021_auto_20220316_2147.py +0 -1101
- meta_edc-1.1.10/meta_prn/migrations/0022_auto_20220318_0133.py +0 -712
- meta_edc-1.1.10/meta_prn/migrations/0032_historicalegfrnotification_egfrnotification.py +0 -440
- meta_edc-1.1.10/meta_prn/migrations/0038_alter_endofstudy_delivery_date_and_more.py +0 -524
- meta_edc-1.1.10/meta_prn/migrations/0041_endofstudy_transfer_date_and_more.py +0 -651
- meta_edc-1.1.10/meta_prn/migrations/0057_historicalonscheduledmreferral_and_more.py +0 -1156
- meta_edc-1.1.10/meta_prn/models/__init__.py +0 -23
- meta_edc-1.1.10/meta_prn/models/offschedule.py +0 -50
- meta_edc-1.1.10/meta_prn/models/protocol_incident.py +0 -35
- meta_edc-1.1.10/meta_prn/models/subject_transfer.py +0 -10
- meta_edc-1.1.10/meta_rando/migrations/0001_initial.py +0 -332
- meta_edc-1.1.10/meta_reports/__init__.py +0 -1
- meta_edc-1.1.10/meta_reports/admin/__init__.py +0 -15
- meta_edc-1.1.10/meta_reports/admin/dbviews/__init__.py +0 -14
- meta_edc-1.1.10/meta_reports/admin/dbviews/glucose_summary_admin.py +0 -116
- meta_edc-1.1.10/meta_reports/admin/dbviews/imp_substitutions_admin.py +0 -101
- meta_edc-1.1.10/meta_reports/admin/dbviews/missing_screening_ogtt_admin/__init__.py +0 -2
- meta_edc-1.1.10/meta_reports/admin/dbviews/missing_screening_ogtt_admin/note_model_admin.py +0 -81
- meta_edc-1.1.10/meta_reports/admin/dbviews/missing_screening_ogtt_admin/unmanaged_model_admin.py +0 -84
- meta_edc-1.1.10/meta_reports/admin/dbviews/on_study_missing_lab_values_admin/__init__.py +0 -1
- meta_edc-1.1.10/meta_reports/admin/dbviews/on_study_missing_lab_values_admin/unmanaged_model_admin.py +0 -13
- meta_edc-1.1.10/meta_reports/admin/dbviews/on_study_missing_values_admin/__init__.py +0 -1
- meta_edc-1.1.10/meta_reports/admin/dbviews/patient_history_missing_baseline_cd4_admin.py +0 -58
- meta_edc-1.1.10/meta_reports/admin/dbviews/unattended_three_in_row2_admin.py +0 -47
- meta_edc-1.1.10/meta_reports/admin/dbviews/unattended_three_in_row_admin.py +0 -35
- meta_edc-1.1.10/meta_reports/admin/dbviews/unattended_two_in_row_admin.py +0 -34
- meta_edc-1.1.10/meta_reports/admin/endpoints_admin.py +0 -14
- meta_edc-1.1.10/meta_reports/admin/last_imp_refill_admin.py +0 -179
- meta_edc-1.1.10/meta_reports/admin/list_filters.py +0 -30
- meta_edc-1.1.10/meta_reports/admin/modeladmin_mixins.py +0 -112
- meta_edc-1.1.10/meta_reports/death_report.py +0 -148
- meta_edc-1.1.10/meta_reports/forms/__init__.py +0 -1
- meta_edc-1.1.10/meta_reports/forms/missing_ogtt_note_form.py +0 -33
- meta_edc-1.1.10/meta_reports/management/commands/generate_endpoints.py +0 -13
- meta_edc-1.1.10/meta_reports/migrations/0035_historicalmissingogttnote_missingogttnote.py +0 -457
- meta_edc-1.1.10/meta_reports/models/__init__.py +0 -16
- meta_edc-1.1.10/meta_reports/models/dbviews/__init__.py +0 -9
- meta_edc-1.1.10/meta_reports/models/dbviews/glucose_summary/__init__.py +0 -2
- meta_edc-1.1.10/meta_reports/models/dbviews/glucose_summary/unmanaged_model.py +0 -47
- meta_edc-1.1.10/meta_reports/models/dbviews/imp_substitutions/__init__.py +0 -1
- meta_edc-1.1.10/meta_reports/models/dbviews/imp_substitutions/view_definition.py +0 -21
- meta_edc-1.1.10/meta_reports/models/dbviews/missing_screening_ogtt/__init__.py +0 -2
- meta_edc-1.1.10/meta_reports/models/dbviews/missing_screening_ogtt/note_model.py +0 -57
- meta_edc-1.1.10/meta_reports/models/dbviews/missing_screening_ogtt/unmanaged_model.py +0 -41
- meta_edc-1.1.10/meta_reports/models/dbviews/on_study_missing_lab_values/__init__.py +0 -1
- meta_edc-1.1.10/meta_reports/models/dbviews/on_study_missing_lab_values/qa_cases.py +0 -53
- meta_edc-1.1.10/meta_reports/models/dbviews/on_study_missing_values/__init__.py +0 -1
- meta_edc-1.1.10/meta_reports/models/dbviews/patient_history_missing_baseline_cd4/__init__.py +0 -1
- meta_edc-1.1.10/meta_reports/models/dbviews/unattended_three_in_row/__init__.py +0 -1
- meta_edc-1.1.10/meta_reports/models/dbviews/unattended_three_in_row2/__init__.py +0 -1
- meta_edc-1.1.10/meta_reports/models/dbviews/unattended_two_in_row/__init__.py +0 -1
- meta_edc-1.1.10/meta_reports/models/endpoints.py +0 -34
- meta_edc-1.1.10/meta_reports/models/last_imp_refill.py +0 -34
- meta_edc-1.1.10/meta_reports/pdf_report.py +0 -68
- meta_edc-1.1.10/meta_reports/tasks.py +0 -13
- meta_edc-1.1.10/meta_reports/utils.py +0 -0
- meta_edc-1.1.10/meta_screening/admin/__init__.py +0 -5
- meta_edc-1.1.10/meta_screening/admin/fieldsets.py +0 -169
- meta_edc-1.1.10/meta_screening/admin/list_filters.py +0 -85
- meta_edc-1.1.10/meta_screening/admin/screening_part_one_admin.py +0 -42
- meta_edc-1.1.10/meta_screening/admin/screening_part_three_admin.py +0 -83
- meta_edc-1.1.10/meta_screening/admin/screening_part_two_admin.py +0 -51
- meta_edc-1.1.10/meta_screening/admin/subject_refusal_admin.py +0 -73
- meta_edc-1.1.10/meta_screening/admin/subject_screening_admin.py +0 -208
- meta_edc-1.1.10/meta_screening/baker_recipes.py +0 -59
- meta_edc-1.1.10/meta_screening/eligibility/__init__.py +0 -8
- meta_edc-1.1.10/meta_screening/eligibility/eligibility.py +0 -218
- meta_edc-1.1.10/meta_screening/eligibility/eligibility_part_three/__init__.py +0 -1
- meta_edc-1.1.10/meta_screening/eligibility/eligibility_part_three/base_eligibility_part_three.py +0 -158
- meta_edc-1.1.10/meta_screening/eligibility/eligibility_part_three/eligibility_part_three_phase_three.py +0 -125
- meta_edc-1.1.10/meta_screening/form_validators/__init__.py +0 -5
- meta_edc-1.1.10/meta_screening/forms/__init__.py +0 -18
- meta_edc-1.1.10/meta_screening/forms/field_lists.py +0 -160
- meta_edc-1.1.10/meta_screening/forms/screening_part_one_form.py +0 -25
- meta_edc-1.1.10/meta_screening/forms/screening_part_three_form.py +0 -28
- meta_edc-1.1.10/meta_screening/forms/screening_part_two_form.py +0 -22
- meta_edc-1.1.10/meta_screening/forms/subject_refusal_form.py +0 -21
- meta_edc-1.1.10/meta_screening/forms/subject_screening_form.py +0 -21
- meta_edc-1.1.10/meta_screening/migrations/0001_initial.py +0 -4574
- meta_edc-1.1.10/meta_screening/migrations/0010_auto_20191106_0828.py +0 -942
- meta_edc-1.1.10/meta_screening/model_mixins/__init__.py +0 -5
- meta_edc-1.1.10/meta_screening/model_mixins/eligibility_model_mixin.py +0 -48
- meta_edc-1.1.10/meta_screening/model_mixins/part_one_fields_model_mixin.py +0 -120
- meta_edc-1.1.10/meta_screening/model_mixins/part_three_fields_model_mixin.py +0 -184
- meta_edc-1.1.10/meta_screening/model_mixins/part_two_fields_model_mixin.py +0 -218
- meta_edc-1.1.10/meta_screening/models/__init__.py +0 -5
- meta_edc-1.1.10/meta_screening/models/icp_referral.py +0 -118
- meta_edc-1.1.10/meta_screening/models/signals.py +0 -24
- meta_edc-1.1.10/meta_screening/models/subject_refusal.py +0 -65
- meta_edc-1.1.10/meta_screening/models/subject_screening.py +0 -72
- meta_edc-1.1.10/meta_screening/offline_models.py +0 -3
- meta_edc-1.1.10/meta_subject/action_items.py +0 -202
- meta_edc-1.1.10/meta_subject/admin/__init__.py +0 -36
- meta_edc-1.1.10/meta_subject/admin/birth_outcome_admin.py +0 -98
- meta_edc-1.1.10/meta_subject/admin/blood_results/__init__.py +0 -6
- meta_edc-1.1.10/meta_subject/admin/blood_results/blood_results_fbc_admin.py +0 -22
- meta_edc-1.1.10/meta_subject/admin/blood_results/blood_results_hba1c_admin.py +0 -26
- meta_edc-1.1.10/meta_subject/admin/blood_results/blood_results_ins_admin.py +0 -24
- meta_edc-1.1.10/meta_subject/admin/blood_results/blood_results_lft_admin.py +0 -24
- meta_edc-1.1.10/meta_subject/admin/blood_results/blood_results_lipids_admin.py +0 -24
- meta_edc-1.1.10/meta_subject/admin/blood_results/blood_results_rft_admin.py +0 -127
- meta_edc-1.1.10/meta_subject/admin/complications_glycemia_admin.py +0 -131
- meta_edc-1.1.10/meta_subject/admin/delivery_admin.py +0 -119
- meta_edc-1.1.10/meta_subject/admin/diabetes/__init__.py +0 -2
- meta_edc-1.1.10/meta_subject/admin/diabetes/dm_endpoint_admin.py +0 -35
- meta_edc-1.1.10/meta_subject/admin/diabetes/dm_followup_admin.py +0 -96
- meta_edc-1.1.10/meta_subject/admin/egfr_drop_notification_admin.py +0 -19
- meta_edc-1.1.10/meta_subject/admin/followup_examination_admin.py +0 -163
- meta_edc-1.1.10/meta_subject/admin/followup_vitals_admin.py +0 -74
- meta_edc-1.1.10/meta_subject/admin/glucose_admin.py +0 -98
- meta_edc-1.1.10/meta_subject/admin/glucose_fbg_admin.py +0 -82
- meta_edc-1.1.10/meta_subject/admin/health_economics/__init__.py +0 -2
- meta_edc-1.1.10/meta_subject/admin/health_economics/health_economics_simple_admin.py +0 -34
- meta_edc-1.1.10/meta_subject/admin/health_economics/health_economics_update_admin.py +0 -101
- meta_edc-1.1.10/meta_subject/admin/hepatitis_test_admin.py +0 -55
- meta_edc-1.1.10/meta_subject/admin/list_filters.py +0 -76
- meta_edc-1.1.10/meta_subject/admin/mnsi_admin.py +0 -52
- meta_edc-1.1.10/meta_subject/admin/other_arv_regimens_admin.py +0 -53
- meta_edc-1.1.10/meta_subject/admin/patient_history_admin.py +0 -49
- meta_edc-1.1.10/meta_subject/admin/physical_exam_admin.py +0 -62
- meta_edc-1.1.10/meta_subject/admin/pregnancy_update_admin.py +0 -33
- meta_edc-1.1.10/meta_subject/admin/study_medication_admin.py +0 -176
- meta_edc-1.1.10/meta_subject/admin/subject_requisition_admin.py +0 -52
- meta_edc-1.1.10/meta_subject/admin/subject_visit_admin.py +0 -46
- meta_edc-1.1.10/meta_subject/admin/subject_visit_missed_admin.py +0 -45
- meta_edc-1.1.10/meta_subject/admin/urine_dipstick_test_admin.py +0 -40
- meta_edc-1.1.10/meta_subject/admin/urine_pregnancy_admin.py +0 -37
- meta_edc-1.1.10/meta_subject/baker_recipes.py +0 -111
- meta_edc-1.1.10/meta_subject/form_validators/__init__.py +0 -8
- meta_edc-1.1.10/meta_subject/form_validators/delivery_form_validator.py +0 -84
- meta_edc-1.1.10/meta_subject/form_validators/dm_endpoint_form_validator.py +0 -37
- meta_edc-1.1.10/meta_subject/form_validators/dm_followup_form_validator.py +0 -235
- meta_edc-1.1.10/meta_subject/form_validators/glucose_form_validator.py +0 -98
- meta_edc-1.1.10/meta_subject/forms/__init__.py +0 -37
- meta_edc-1.1.10/meta_subject/forms/blood_results/__init__.py +0 -6
- meta_edc-1.1.10/meta_subject/forms/blood_results/blood_results_rft_form.py +0 -96
- meta_edc-1.1.10/meta_subject/forms/diabetes/__init__.py +0 -2
- meta_edc-1.1.10/meta_subject/forms/diabetes/dm_followup_form.py +0 -25
- meta_edc-1.1.10/meta_subject/forms/followup_vitals_form.py +0 -44
- meta_edc-1.1.10/meta_subject/forms/health_economics/__init__.py +0 -2
- meta_edc-1.1.10/meta_subject/forms/next_appointment_form.py +0 -37
- meta_edc-1.1.10/meta_subject/forms/slider_widget.py +0 -25
- meta_edc-1.1.10/meta_subject/forms/study_medication_form.py +0 -79
- meta_edc-1.1.10/meta_subject/management/commands/create_missing_refills.py +0 -69
- meta_edc-1.1.10/meta_subject/management/commands/create_missing_rx.py +0 -43
- meta_edc-1.1.10/meta_subject/management/commands/missed.py +0 -254
- meta_edc-1.1.10/meta_subject/metadata_rules/__init__.py +0 -1
- meta_edc-1.1.10/meta_subject/metadata_rules/predicates.py +0 -291
- meta_edc-1.1.10/meta_subject/migrations/0001_initial.py +0 -10041
- meta_edc-1.1.10/meta_subject/migrations/0002_auto_20191021_0353.py +0 -722
- meta_edc-1.1.10/meta_subject/migrations/0012_auto_20200118_2334.py +0 -407
- meta_edc-1.1.10/meta_subject/migrations/0014_auto_20200120_1622.py +0 -803
- meta_edc-1.1.10/meta_subject/migrations/0018_coronakap_historicalcoronakap.py +0 -1459
- meta_edc-1.1.10/meta_subject/migrations/0033_auto_20200516_2356.py +0 -477
- meta_edc-1.1.10/meta_subject/migrations/0038_auto_20200520_0020.py +0 -675
- meta_edc-1.1.10/meta_subject/migrations/0040_auto_20200527_2155.py +0 -532
- meta_edc-1.1.10/meta_subject/migrations/0045_auto_20200530_1801.py +0 -37
- meta_edc-1.1.10/meta_subject/migrations/0051_auto_20200617_2117.py +0 -515
- meta_edc-1.1.10/meta_subject/migrations/0063_auto_20210715_0337.py +0 -532
- meta_edc-1.1.10/meta_subject/migrations/0066_auto_20210721_0335.py +0 -702
- meta_edc-1.1.10/meta_subject/migrations/0067_auto_20210726_0340.py +0 -1183
- meta_edc-1.1.10/meta_subject/migrations/0068_auto_20210728_1809.py +0 -1011
- meta_edc-1.1.10/meta_subject/migrations/0072_auto_20210805_1545.py +0 -663
- meta_edc-1.1.10/meta_subject/migrations/0073_auto_20210809_0055.py +0 -1068
- meta_edc-1.1.10/meta_subject/migrations/0077_auto_20210809_2323.py +0 -214
- meta_edc-1.1.10/meta_subject/migrations/0082_auto_20210823_1612.py +0 -307
- meta_edc-1.1.10/meta_subject/migrations/0083_auto_20210823_1620.py +0 -365
- meta_edc-1.1.10/meta_subject/migrations/0088_auto_20210924_0027.py +0 -704
- meta_edc-1.1.10/meta_subject/migrations/0090_auto_20210924_0424.py +0 -415
- meta_edc-1.1.10/meta_subject/migrations/0093_auto_20211117_0352.py +0 -819
- meta_edc-1.1.10/meta_subject/migrations/0095_auto_20220128_1719.py +0 -564
- meta_edc-1.1.10/meta_subject/migrations/0098_auto_20220309_2106.py +0 -540
- meta_edc-1.1.10/meta_subject/migrations/0101_auto_20220316_2147.py +0 -1554
- meta_edc-1.1.10/meta_subject/migrations/0115_historicalegfrnotification_egfrnotification.py +0 -461
- meta_edc-1.1.10/meta_subject/migrations/0164_dmreferralfollowup_historicaldmreferralfollowup.py +0 -709
- meta_edc-1.1.10/meta_subject/migrations/0172_remove_historicalbloodresultsglu_action_item_and_more.py +0 -68
- meta_edc-1.1.10/meta_subject/migrations/0177_alter_bloodresultslft_alp_value_and_more.py +0 -92
- meta_edc-1.1.10/meta_subject/migrations/0178_historicalhealtheconomicsupdate_and_more.py +0 -728
- meta_edc-1.1.10/meta_subject/migrations/0186_healtheconomicsupdate_singleton_field_and_more.py +0 -55
- meta_edc-1.1.10/meta_subject/migrations/0187_dmdiagnosis_historicaldmdiagnosis_dmdxresult_and_more.py +0 -451
- meta_edc-1.1.10/meta_subject/migrations/0188_historicaldmdxresult_dmdxresult.py +0 -403
- meta_edc-1.1.10/meta_subject/migrations/0209_remove_historicaldmdxresult_dm_diagnosis_and_more.py +0 -37
- meta_edc-1.1.10/meta_subject/migrations/0216_historicalnextappointment_nextappointment.py +0 -554
- meta_edc-1.1.10/meta_subject/migrations/0220_historicalbloodresultsgludummy_bloodresultsgludummy.py +0 -834
- meta_edc-1.1.10/meta_subject/model_mixins/__init__.py +0 -5
- meta_edc-1.1.10/meta_subject/model_mixins/search_slug_model_mixin.py +0 -11
- meta_edc-1.1.10/meta_subject/model_mixins/vitals_fields_model_mixin.py +0 -76
- meta_edc-1.1.10/meta_subject/models/__init__.py +0 -50
- meta_edc-1.1.10/meta_subject/models/birth_outcomes.py +0 -101
- meta_edc-1.1.10/meta_subject/models/blood_results/__init__.py +0 -7
- meta_edc-1.1.10/meta_subject/models/delivery.py +0 -163
- meta_edc-1.1.10/meta_subject/models/diabetes/__init__.py +0 -2
- meta_edc-1.1.10/meta_subject/models/diabetes/dm_endpoint.py +0 -61
- meta_edc-1.1.10/meta_subject/models/diabetes/dm_followup.py +0 -216
- meta_edc-1.1.10/meta_subject/models/diet_and_lifestyle.py +0 -32
- meta_edc-1.1.10/meta_subject/models/followup_examination.py +0 -254
- meta_edc-1.1.10/meta_subject/models/glucose.py +0 -78
- meta_edc-1.1.10/meta_subject/models/glucose_fbg.py +0 -61
- meta_edc-1.1.10/meta_subject/models/health_economics/__init__.py +0 -3
- meta_edc-1.1.10/meta_subject/models/health_economics/health_economics.py +0 -319
- meta_edc-1.1.10/meta_subject/models/health_economics/health_economics_update.py +0 -96
- meta_edc-1.1.10/meta_subject/models/hepatitis_test.py +0 -60
- meta_edc-1.1.10/meta_subject/models/other_arv_regimens_detail.py +0 -60
- meta_edc-1.1.10/meta_subject/models/patient_history.py +0 -147
- meta_edc-1.1.10/meta_subject/models/physical_exam.py +0 -63
- meta_edc-1.1.10/meta_subject/models/pregnancy_update.py +0 -30
- meta_edc-1.1.10/meta_subject/models/signals.py +0 -126
- meta_edc-1.1.10/meta_subject/models/subject_visit.py +0 -69
- meta_edc-1.1.10/meta_subject/models/urine_dipstick_test.py +0 -42
- meta_edc-1.1.10/meta_subject/models/urine_pregnancy.py +0 -44
- meta_edc-1.1.10/meta_visit_schedule/visit_schedules/__init__.py +0 -11
- meta_edc-1.1.10/meta_visit_schedule/visit_schedules/phase_three/__init__.py +0 -2
- meta_edc-1.1.10/meta_visit_schedule/visit_schedules/phase_three/schedule.py +0 -365
- meta_edc-1.1.10/meta_visit_schedule/visit_schedules/phase_three/schedule_dm_referral.py +0 -60
- meta_edc-1.1.10/meta_visit_schedule/visit_schedules/phase_three/schedule_pregnancy.py +0 -39
- meta_edc-1.1.10/pyproject.toml +0 -166
- {meta_edc-1.1.10 → meta_edc-1.1.13}/LICENSE +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/admin/ae_followup_admin.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/admin/ae_initial_admin.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/admin/ae_local_review_admin.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/admin/ae_sponsor_review_admin.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/admin/ae_tmg_admin.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/admin/death_report_tmg_admin.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/admin/death_report_tmg_second_admin.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/admin/hospitalization_admin.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/admin_site.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/apps.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/choices.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/constants.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/forms/ae_followup_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/forms/ae_initial_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/forms/ae_local_review_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/forms/ae_sponsor_review_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/forms/ae_susar_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/forms/ae_tmg_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/forms/death_report_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/forms/death_report_tmg_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/forms/death_report_tmg_second_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/forms/hospitalization_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/list_data.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/migrations/0002_auto_20191024_1000.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/migrations/0003_auto_20191102_0033.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/migrations/0004_auto_20191114_0821.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/migrations/0005_auto_20210624_0225.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/migrations/0007_auto_20210911_2036.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/migrations/0008_auto_20211011_1657.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/migrations/0009_auto_20220307_1929.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/migrations/0010_auto_20220704_1841.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/migrations/0011_alter_aefollowup_action_identifier_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/migrations/0012_auto_20220826_0258.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/migrations/0013_auto_20220826_0322.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/migrations/0014_auto_20220826_0406.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/migrations/0015_auto_20220907_0157.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/migrations/0016_rename_narrative_aetmg_investigator_narrative_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/migrations/0017_auto_20221130_2257.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/migrations/0018_alter_deathreporttmg_cause_of_death_agreed_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/migrations/0019_alter_aefollowup_managers_alter_aeinitial_managers_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/migrations/0020_alter_aesusar_options_alter_aetmg_options_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/migrations/0021_alter_aefollowup_site_alter_aeinitial_site_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/migrations/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/models/ae_followup.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/models/ae_initial.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/models/ae_local_review.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/models/ae_sponsor_review.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/models/ae_susar.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/models/ae_tmg.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/models/death_report.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/models/death_report_tmg.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/models/death_report_tmg_second.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/models/managers.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/pdf_reports/ae_pdf_report.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/pdf_reports/death_pdf_report.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/pdf_reports/meta_pdf_report_mixin.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/templates/meta_ae/aeinitial_description.html +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/templatetags/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/templatetags/meta_ae_extras.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_ae/urls.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_analytics/README.rst +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_analytics/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_analytics/constants.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_analytics/dataframes/constants.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_analytics/tables/eligible.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_analytics/tables/enrolled/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_analytics/tables/enrolled/glucose.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_analytics/tables/has_dm.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_analytics/utils.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_auth/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_auth/apps.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_auth/auth_objects.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_auth/auths.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_auth/urls.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/admin/subject_consent_admin.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/admin/subject_consent_v1_admin.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/admin_site.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/apps.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/consents.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/constants.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/form_validators/subject_consent_form_validator.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/forms/subject_consent_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/forms/subject_consent_v1_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/locale/lg/LC_MESSAGES/django.po +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/locale/sw/LC_MESSAGES/django.po +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/management/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/management/commands/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/migrations/0002_auto_20191024_1000.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/migrations/0003_auto_20200325_0901.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/migrations/0004_auto_20210624_0225.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/migrations/0005_alter_subjectconsent_options.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/migrations/0006_auto_20210911_2036.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/migrations/0007_auto_20220128_1719.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/migrations/0008_auto_20220412_2151.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/migrations/0009_auto_20220704_1841.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/migrations/0010_alter_historicalsubjectreconsent_action_identifier_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/migrations/0011_auto_20220826_0258.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/migrations/0012_auto_20220826_0322.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/migrations/0013_auto_20220826_0406.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/migrations/0014_alter_subjectconsent_managers.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/migrations/0015_auto_20220914_0542.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/migrations/0016_auto_20220914_0547.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/migrations/0017_auto_20220929_1742.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/migrations/0018_alter_subjectconsent_options_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/migrations/0019_alter_subjectconsent_options_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/migrations/0020_historicalsubjectconsent_model_name_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/migrations/0021_auto_20240111_0442.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/migrations/0022_alter_historicalsubjectconsent_site_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/migrations/0023_subjectconsentv1_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/migrations/0025_alter_historicalsubjectconsent_first_name_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/migrations/0027_auto_20250111_0344.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/migrations/0028_historicalsubjectconsentv1ext_assessment_score_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/migrations/0029_alter_historicalsubjectconsentv1ext_agrees_to_extension_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/migrations/0030_auto_20250120_2114.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/migrations/0031_alter_historicalsubjectconsent_guardian_name_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/migrations/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/models/subject_consent_v1.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/models/subject_consent_v1_ext.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_consent/urls.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_dashboard/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_dashboard/apps.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_dashboard/locale/lg/LC_MESSAGES/django.po +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_dashboard/locale/sw/LC_MESSAGES/django.po +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_dashboard/migrations/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_dashboard/navbars.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_dashboard/templates/meta_dashboard/buttons/add_consent_button.html +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_dashboard/templates/meta_dashboard/buttons/dashboard_button.html +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_dashboard/templates/meta_dashboard/buttons/eligibility_button.html +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_dashboard/templates/meta_dashboard/buttons/refusal_button.html +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_dashboard/templates/meta_dashboard/buttons/screening_button.html +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_dashboard/templates/meta_dashboard/screening/listboard.html +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_dashboard/templates/meta_dashboard/subject/dashboard/sidebar.html +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_dashboard/templates/meta_dashboard/subject/dashboard/top_bar.html +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_dashboard/templates/meta_dashboard/subject/dashboard.html +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_dashboard/templates/meta_dashboard/subject/listboard.html +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_dashboard/templatetags/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_dashboard/urls.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_dashboard/views/screening/listboard_view.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_dashboard/views/subject/listboard/listboard_view.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_data_manager/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_data_manager/apps.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_data_manager/data_manager.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_data_manager/handlers.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_edc/admin.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_edc/apps.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_edc/asgi.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_edc/management/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_edc/management/commands/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_edc/meta_version.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_edc/migrations/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_edc/model_callers.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_edc/models.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_edc/navbars.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_edc/settings/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_edc/templates/meta_edc/base.html +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_edc/templates/meta_edc/home.html +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_edc/urls.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_edc/utils.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_edc/views/home_view.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_edc/wsgi.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_edc/wsgi_live.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_edc/wsgi_uat.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_export/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_export/admin_site.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_export/apps.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_export/urls.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_labs/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_labs/aliquot_types.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_labs/apps.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_labs/lab_profiles.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_labs/labs.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_labs/list_data.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_labs/processing_profiles.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_labs/reportables.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_lists/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_lists/admin.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_lists/admin_site.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_lists/apps.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_lists/list_data.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_lists/migrations/0001_initial.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_lists/migrations/0002_auto_20191026_2231.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_lists/migrations/0003_auto_20191102_0033.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_lists/migrations/0004_auto_20191102_1859.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_lists/migrations/0005_auto_20191104_0930.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_lists/migrations/0006_auto_20200514_1959.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_lists/migrations/0007_auto_20200516_2356.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_lists/migrations/0008_auto_20200528_1517.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_lists/migrations/0009_auto_20200613_2041.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_lists/migrations/0010_auto_20200617_1738.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_lists/migrations/0011_auto_20210624_0225.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_lists/migrations/0012_auto_20210728_1809.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_lists/migrations/0013_transferreasons_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_lists/migrations/0014_auto_20220913_2139.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_lists/migrations/0015_abnormalfootappearanceobservations_extra_value_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_lists/migrations/0016_alter_abnormalfootappearanceobservations_options_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_lists/migrations/0017_complications_dmmedications_dmtreatments_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_lists/migrations/0018_missedreferralreasons.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_lists/migrations/0019_auto_20250128_0143.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_lists/migrations/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_lists/models.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_lists/urls.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_pharmacy/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_pharmacy/admin/rx_admin.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_pharmacy/admin_site.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_pharmacy/apps.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_pharmacy/constants.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_pharmacy/forms/rx_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_pharmacy/label_configs.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_pharmacy/labels/draw_label_for_subject_with_code128.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_pharmacy/list_data.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_pharmacy/management/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_pharmacy/management/commands/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_pharmacy/management/commands/update_initial_pharmacy_data.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_pharmacy/migrations/0001_initial.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_pharmacy/migrations/0004_alter_historicalsubstitutions_report_datetime_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_pharmacy/migrations/0005_auto_20240911_0352.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_pharmacy/migrations/0007_lotnumber_medication.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_pharmacy/migrations/0009_remove_historicalrx_slug.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_pharmacy/migrations/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_pharmacy/models/rx.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_pharmacy/models/rx_label.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_pharmacy/urls.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/action_items.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/admin_site.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/apps.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/choices.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/constants.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/form_validators/protocol_incident.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/forms/dm_referral_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/forms/end_of_study_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/forms/loss_to_followup_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/forms/off_study_medication_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/forms/offschedule_dm_referral_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/forms/offschedule_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/forms/offschedule_pregnancy_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/forms/pregnancy_notification_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/forms/protocol_incident_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/forms/subject_transfer_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/list_data.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0002_auto_20191024_1000.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0003_auto_20200120_2020.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0004_auto_20200403_0332.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0005_auto_20200524_1944.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0006_auto_20210624_0225.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0007_auto_20210721_0335.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0008_auto_20210910_0238.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0009_auto_20210910_0239.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0010_auto_20210910_1906.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0011_auto_20210910_1911.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0012_auto_20210911_0004.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0013_auto_20210911_2036.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0014_auto_20211003_1709.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0015_auto_20211104_1447.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0016_auto_20220128_1719.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0019_auto_20220309_2230.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0020_auto_20220310_0439.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0023_auto_20220415_1747.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0024_alter_protocoldeviationviolation_violation.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0025_alter_historicalprotocoldeviationviolation_options_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0026_remove_historicalprotocoldeviationviolation_violation_type_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0027_rename_historicalprotocoldeviationviolation_historicalprotocolincident_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0028_historicalpregnancynotification_bhcg_date_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0029_alter_historicalpregnancynotification_edd_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0030_auto_20220627_1119.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0031_alter_historicaloffschedule_options_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0033_remove_historicalegfrnotification_action_item_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0034_auto_20220630_1110.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0035_auto_20220630_1140.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0036_remove_endofstudy_meta_prn_en_id_a50384_idx_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0037_endofstudy_delivery_date_endofstudy_pregnancy_date_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0039_historicaloffstudymedication_reason_other_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0040_remove_historicaloffstudymedication_expected_restart_date_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0042_remove_endofstudy_investigator_decision_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0043_auto_20220704_1841.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0044_alter_endofstudy_action_identifier_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0045_auto_20220826_0258.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0046_auto_20220826_0322.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0047_auto_20220826_0406.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0048_auto_20220922_2236.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0049_auto_20220929_1742.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0050_auto_20221004_0629.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0051_historicalprotocolincident_reasons_withdrawn_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0052_alter_historicalprotocolincident_reasons_withdrawn_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0053_alter_losstofollowup_options_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0054_alter_losstofollowup_options_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0055_alter_endofstudy_site_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0056_alter_endofstudy_clinical_withdrawal_reason_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0058_dmreferral_referral_note_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0059_alter_historicaloffstudymedication_reason_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0060_alter_onschedule_managers_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0061_auto_20250115_2025.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0062_alter_endofstudy_offstudy_reason_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0063_historicaloffstudymedication_singleton_field_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0064_auto_20250602_2143.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0065_alter_historicaloffstudymedication_subject_identifier_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/0066_alter_historicallosstofollowup_subject_identifier_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/migrations/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/models/dm_referral.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/models/end_of_study.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/models/loss_to_followup.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/models/off_study_medication.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/models/onschedule.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/models/pregnancy_notification.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/models/signals.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/pregnancy_action_item_mixin.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/templates/meta_prn/eos/additional_instructions.html +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/templates/meta_prn/offschedule/additional_instructions.html +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_prn/urls.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_rando/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_rando/apps.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_rando/migrations/0002_auto_20220704_1841.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_rando/migrations/0003_auto_20220826_1640.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_rando/migrations/0004_alter_randomizationlist_options_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_rando/migrations/0005_alter_randomizationlist_options_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_rando/migrations/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_rando/models.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_rando/randomizers.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/admin/dbviews/on_study_missing_values_admin/unmanaged_model_admin.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/admin/endpoints_all_admin.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/admin_site.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/ae_report.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/apps.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/management/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/management/commands/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0001_initial.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0002_patienthistorymissingbaselinecd4_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0003_auto_20240618_0505.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0004_alter_patienthistorymissingbaselinecd4_table.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0005_endpoints.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0006_endpoints_baseline_datetime.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0007_alter_endpoints_endpoint_label_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0008_alter_endpoints_endpoint_label.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0009_alter_endpoints_options.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0010_alter_patienthistorymissingbaselinecd4_options_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0011_auto_20240813_0156.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0012_auto_20240813_1516.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0013_auto_20240813_1516.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0014_auto_20240813_1517.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0015_alter_endpoints_site.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0016_missingscreeningogtt.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0017_auto_20240819_1711.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0018_auto_20240819_1713.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0019_auto_20240819_1721.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0020_auto_20240819_1811.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0021_auto_20240819_1817.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0022_auto_20240819_1832.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0023_endpoints_meta_report_subject_a56b22_idx.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0024_glucosesummary.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0025_auto_20240822_0115.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0026_auto_20240822_0120.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0027_auto_20240822_0140.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0028_alter_glucosesummary_options.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0029_auto_20240822_0149.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0030_auto_20240822_1637.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0031_endpointsproxy.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0032_alter_endpointsproxy_options.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0033_auto_20240823_0012.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0034_auto_20240823_1642.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0036_historicalmissingogttnote_fasting_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0037_historicalmissingogttnote_result_status_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0038_alter_historicalmissingogttnote_fasting_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0039_onstudymissingvalues.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0040_auto_20240824_0412.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0041_auto_20240828_2229.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0042_onstudymissinglabvalues.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0043_auto_20240828_2309.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0044_auto_20240828_2323.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0045_auto_20240829_0248.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0046_auto_20240829_0250.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0047_impsubstitutions.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0048_auto_20240909_2338.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0049_auto_20240911_0327.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0050_alter_endpoints_created.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0051_remove_endpoints_baseline_datetime_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0052_lastimpvisit.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0053_rename_lastimpvisit_lastimprefill_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0054_auto_20250422_2003.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0055_alter_glucosesummary_table.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0056_auto_20250422_2214.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0057_auto_20250422_2224.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/0058_auto_20250422_2232.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/migrations/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/models/dbviews/README +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/models/dbviews/glucose_summary/view_definition.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/models/dbviews/imp_substitutions/unmanaged_model.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/models/dbviews/missing_screening_ogtt/view_definition.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/models/dbviews/on_study_missing_lab_values/unmanged_model.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/models/dbviews/on_study_missing_lab_values/view_definition.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/models/dbviews/on_study_missing_values/qa_cases.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/models/dbviews/on_study_missing_values/unmanged_model.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/models/dbviews/on_study_missing_values/view_definition.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/models/dbviews/patient_history_missing_baseline_cd4/unmanaged_model.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/models/dbviews/patient_history_missing_baseline_cd4/view_definition.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/models/dbviews/unattended_three_in_row/unmanaged_model.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/models/dbviews/unattended_three_in_row/view_definition.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/models/dbviews/unattended_three_in_row2/unmanaged_model.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/models/dbviews/unattended_three_in_row2/view_definition.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/models/dbviews/unattended_two_in_row/unmanaged_model.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/models/dbviews/unattended_two_in_row/view_definition.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/models/endpoints_proxy.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/templates/meta_reports/columns/subject_identifier_column.html +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/templates/meta_reports/endpoints_all_change_list_note.html +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/templates/meta_reports/endpoints_change_list_note.html +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/templates/meta_reports/last_imp_refill/changelist_note.html +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_reports/urls.py +0 -0
- {meta_edc-1.1.10/meta_analytics/dataframes/glucose_endpoints → meta_edc-1.1.13/src/meta_reports}/utils.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/admin_site.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/apps.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/calculators.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/choices.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/constants.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/eligibility/eligibility_part_one.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/eligibility/eligibility_part_two.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/form_validators/screening_part_one.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/form_validators/screening_part_three.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/form_validators/screening_part_two.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/form_validators/subject_refusal.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/form_validators/subject_screening.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0002_auto_20191020_0612.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0003_auto_20191020_0627.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0004_auto_20191020_0738.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0005_auto_20191021_0353.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0006_auto_20191022_0134.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0007_auto_20191024_1000.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0008_auto_20191031_0745.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0009_auto_20191105_0122.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0011_auto_20191107_0342.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0012_auto_20191107_0427.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0013_auto_20191107_0442.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0014_auto_20191107_0528.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0015_auto_20191107_2249.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0016_auto_20191119_2331.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0017_auto_20191213_0314.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0018_auto_20200118_1854.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0019_auto_20200120_2256.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0020_auto_20200524_1944.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0021_auto_20210628_2105.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0022_auto_20210702_0426.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0023_auto_20210702_0533.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0024_auto_20210710_1929.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0025_auto_20210710_2247.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0026_auto_20210712_0433.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0027_auto_20210804_0438.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0028_auto_20210823_2353.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0029_auto_20211123_1645.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0030_auto_20220128_1719.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0031_auto_20220304_0448.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0032_auto_20220304_0501.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0033_auto_20220304_0504.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0034_auto_20220304_0508.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0035_auto_20220304_2233.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0036_auto_20220304_2307.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0037_auto_20220312_0339.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0038_auto_20220312_1929.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0039_auto_20220312_1938.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0040_auto_20220316_2147.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0041_auto_20220403_1227.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0042_auto_20220403_1402.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0043_auto_20220407_1713.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0044_alter_historicalscreeningpartone_severe_htn_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0045_historicalscreeningpartone_contact_number_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0046_historicalscreeningpartone_hba1c_datetime_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0047_historicalscreeningpartone_appt_datetime_repeat_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0048_rename_appt_datetime_repeat_historicalscreeningpartone_repeat_appt_datetime_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0049_historicalscreeningpartone_p3_ltfu_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0050_historicalscreeningpartone_agree_to_p3_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0051_alter_historicalscreeningpartone_advised_to_fast_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0052_alter_historicalscreeningpartone_p3_ltfu_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0053_auto_20220704_1841.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0054_auto_20220722_2130.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0055_alter_historicalscreeningpartone_creatinine_value_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0056_alter_historicalscreeningpartone_agree_to_p3_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0057_alter_historicalscreeningpartone_calculated_egfr_value_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0058_alter_historicalscreeningpartone_eligibility_datetime_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0059_alter_icpreferral_managers_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0060_historicalicpreferral_locale_created_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0061_alter_historicalicpreferral_site_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0062_remove_icpreferral_site_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0063_alter_historicalscreeningpartone_fasting_duration_str_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0064_remove_historicalscreeningpartone_fasting_duration_minutes_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0065_auto_20240516_0352.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0066_alter_historicalscreeningpartone_fasting_duration_delta_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/0067_alter_historicalscreeningpartone_report_datetime_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/migrations/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/model_mixins/calculated_model_mixin.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/model_mixins/creatinine_fields_model_mixin.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/models/proxy_models.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_screening/urls.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_sites/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_sites/apps.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_sites/migrations/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_sites/models.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_sites/sites.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/admin/autocomplete_admin.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/admin/complications_admin.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/admin/concomitant_medication_admin.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/admin/eq5d3l_admin.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/admin/fields.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/admin/fieldsets.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/admin/malaria_test_admin.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/admin/medication_adherence_admin.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/admin/modeladmin.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/admin/next_appointment_admin.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/admin/sf12_admin.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/admin_site.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/apps.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/choices.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/constants.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/form_validators/birth_outcomes_form_validator.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/form_validators/egfr_drop_notification_form_validator.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/form_validators/followup_examination_form_validator.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/form_validators/health_economics_form_validator.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/forms/birth_outcomes_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/forms/blood_results/blood_results_fbc_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/forms/blood_results/blood_results_hba1c_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/forms/blood_results/blood_results_ins_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/forms/blood_results/blood_results_lft_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/forms/blood_results/blood_results_lipids_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/forms/complications_glycemia_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/forms/concomitant_medication_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/forms/delivery_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/forms/diabetes/dm_endpoint_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/forms/egfr_drop_notification_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/forms/eq53d3l_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/forms/followup_examination_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/forms/glucose_fbg_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/forms/glucose_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/forms/health_economics/health_economics_simple_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/forms/health_economics/health_economics_update_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/forms/hepatitis_test_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/forms/malaria_test_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/forms/medication_adherence_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/forms/mixins.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/forms/mnsi_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/forms/other_arv_regimens_detail_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/forms/other_arv_regimens_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/forms/patient_history_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/forms/physical_exam_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/forms/pregnancy_update_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/forms/sf12_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/forms/subject_requisition_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/forms/subject_visit_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/forms/subject_visit_missed_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/forms/urine_dipstick_test_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/forms/urine_pregnancy_form.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/identifiers.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/locale/lg/LC_MESSAGES/django.po +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/locale/sw/LC_MESSAGES/django.po +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/management/__init__py.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/management/commands/__init__py.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/metadata_rules/metadata_rules.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0003_auto_20191021_0534.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0004_auto_20191022_0134.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0005_auto_20191024_1000.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0006_auto_20191104_0756.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0007_auto_20191107_2249.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0008_auto_20191115_0132.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0009_auto_20191119_2331.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0010_auto_20191213_0314.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0011_auto_20200118_1854.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0013_auto_20200119_0013.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0015_auto_20200120_1943.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0016_auto_20200123_1508.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0017_auto_20200325_0901.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0019_auto_20200417_0315.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0020_auto_20200417_0329.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0021_auto_20200417_0332.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0022_auto_20200419_2223.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0023_auto_20200419_2305.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0024_auto_20200419_2331.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0025_auto_20200420_1455.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0026_auto_20200420_1524.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0027_auto_20200420_1645.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0028_auto_20200420_1732.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0029_auto_20200420_1751.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0030_auto_20200420_1816.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0031_auto_20200422_2039.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0032_auto_20200515_0307.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0034_auto_20200517_0125.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0035_auto_20200517_0128.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0036_auto_20200517_0150.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0037_auto_20200517_0207.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0039_auto_20200524_1944.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0041_auto_20200528_0242.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0042_auto_20200528_0252.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0043_auto_20200528_1555.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0044_auto_20200528_1853.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0046_auto_20200530_1804.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0047_auto_20200530_1819.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0048_auto_20200530_1819.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0049_auto_20200613_2041.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0050_auto_20200614_1934.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0052_auto_20210624_0225.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0053_auto_20210628_2105.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0054_auto_20210628_2314.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0055_auto_20210628_2331.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0056_auto_20210702_0426.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0057_auto_20210702_0458.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0058_auto_20210702_0533.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0059_auto_20210709_2056.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0060_auto_20210709_2241.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0061_auto_20210710_1929.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0062_auto_20210713_0616.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0064_auto_20210715_2336.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0065_auto_20210716_0813.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0069_auto_20210801_2021.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0070_auto_20210804_0438.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0071_auto_20210804_0715.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0074_auto_20210809_1744.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0075_auto_20210809_1744.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0076_auto_20210809_1854.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0078_auto_20210810_0857.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0079_auto_20210812_0335.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0080_auto_20210812_0400.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0081_auto_20210817_2306.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0084_auto_20210910_0234.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0085_auto_20210911_2036.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0086_auto_20210920_0229.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0087_auto_20210922_2058.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0089_auto_20210924_0121.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0091_auto_20210929_2324.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0092_auto_20211013_0447.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0094_auto_20211123_1645.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0096_auto_20220304_0501.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0097_auto_20220304_2233.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0099_auto_20220309_2218.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0100_auto_20220309_2238.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0102_auto_20220324_0304.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0103_auto_20220324_0326.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0104_auto_20220412_2151.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0105_auto_20220412_2310.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0106_auto_20220414_1741.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0107_auto_20220415_0043.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0108_auto_20220415_1747.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0109_auto_20220415_1758.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0110_auto_20220512_1811.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0111_alter_followupvitals_severe_htn_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0112_historicalsubjectvisit_document_status_comments_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0113_bloodresultsrft_egfr_percent_change_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0114_alter_bloodresultsrft_egfr_percent_change_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0116_egfrnotification_report_status_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0117_alter_egfrnotification_managers_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0118_delivery_crf_status_delivery_crf_status_comments_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0119_historicalstudymedication_roundup_divisible_by_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0120_alter_birthoutcomes_managers_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0121_auto_20220704_1841.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0122_auto_20220708_2144.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0123_auto_20220714_2136.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0124_auto_20220714_2303.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0125_auto_20220719_2134.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0126_auto_20220719_2142.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0127_auto_20220720_0053.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0128_auto_20220720_0055.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0129_auto_20220720_0108.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0130_auto_20220720_0216.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0131_auto_20220722_0411.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0132_auto_20220722_1825.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0133_auto_20220722_2140.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0134_auto_20220722_2211.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0135_auto_20220722_2212.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0136_egfrdropnotification_creatinine_quantifier_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0137_alter_egfrdropnotification_egfr_percent_change_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0138_alter_glucose_fbg_datetime_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0139_alter_bloodresultsins_ins_units_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0140_alter_bloodresultsfbc_action_identifier_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0141_auto_20220826_0258.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0142_auto_20220826_0322.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0143_auto_20220826_0406.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0144_auto_20220907_0157.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0145_auto_20220907_0202.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0146_auto_20220907_0207.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0147_auto_20220907_1505.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0148_auto_20220908_1826.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0149_auto_20220913_2139.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0150_auto_20220914_0039.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0151_auto_20220918_0508.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0152_auto_20220925_0509.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0153_auto_20220928_0250.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0154_auto_20220928_0419.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0155_auto_20220929_1742.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0156_alter_bloodresultsfbc_assay_datetime_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0157_remove_bloodresultsfbc_crf_status_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0158_alter_followupexamination_attended_clinic_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0159_alter_bloodresultsfbc_results_abnormal_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0160_alter_healtheconomicssimple_education_certificate_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0161_alter_birthoutcomes_options_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0162_alter_followupexamination_abdominal_tenderness_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0163_alter_birthoutcomes_options_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0165_alter_dmreferralfollowup_healthcare_workers.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0166_rename_dm_medications_other_dmreferralfollowup_other_dm_medications_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0167_rename_healthcare_workers_other_dmreferralfollowup_other_healthcare_workers_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0168_alter_dmreferralfollowup_last_missed_pill_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0169_alter_dmreferralfollowup_options_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0170_remove_glucose_repeat_fbg_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0171_alter_glucose_endpoint_today_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0173_alter_glucosefbg_options_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0174_remove_glucosefbg_glucose_abnormal_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0175_auto_20240214_2239.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0176_alter_glucosefbg_glucose_value_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0179_alter_birthoutcomes_consent_model_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0180_dmreferralfollowup_missed_referral_reasons_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0181_dmreferralfollowup_action_identifier_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0182_rename_dmreferralfollowup_dmfollowup_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0183_alter_dmfollowup_on_dm_medications_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0184_alter_glucose_options_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0185_alter_bloodresultsins_fasting_duration_str_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0189_alter_dmdxresult_options_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0190_dmdiagnosis_dx_no_tmg_reason_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0191_alter_dmdiagnosis_dx_no_tmg_reason_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0192_rename_glucose_quantifier_glucosefbg_fbg_quantifier_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0193_alter_glucosefbg_fbg_value_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0194_remove_glucosefbg_assay_datetime_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0195_alter_glucosefbg_fbg_datetime_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0196_glucosefbg_fbg_not_performed_reason_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0197_glucosefbg_fasting_duration_estimated_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0198_alter_glucosefbg_fasting_duration_estimated_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0199_auto_20240516_0247.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0200_rename_fasting_duration_minutes_bloodresultsins_fasting_duration_delta_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0201_alter_bloodresultsins_fasting_duration_delta_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0202_auto_20240516_0315.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0203_alter_bloodresultsins_fasting_duration_delta_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0204_glucosefbg_repeat_fbg_date_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0205_historicalsubjectrequisition_crf_status_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0206_bloodresultsfbc_crf_status_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0207_alter_historicalphysicalexam_waist_circumference_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0208_birthoutcomes_crf_status_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0210_remove_dmdxresult_dm_diagnosis_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0211_dmendpoint_endpoint_reached_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0212_auto_20240827_2222.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0213_rename_bloodresultslipid_bloodresultslipids_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0214_historicalstudymedication_stock_codes_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0215_alter_historicalstudymedication_stock_codes_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0217_alter_historicalnextappointment_appt_datetime_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0218_alter_historicalnextappointment_appt_date_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0219_remove_historicalnextappointment_allow_create_interim_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0221_auto_20250402_1913.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0222_alter_historicalstudymedication_stock_codes_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0223_bloodresultsfbc_errors_bloodresultsgludummy_errors_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0224_bloodresultsfbc_abnormal_summary_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0225_followupvitals_waist_circumference_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0226_followupvitals_waist_circumference_comment_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/0227_alter_followupvitals_waist_circumference_comment_and_more.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/migrations/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/model_mixins/arv_history_model_mixin.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/model_mixins/crf_model_mixin.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/model_mixins/crf_with_action_model_mixin.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/models/blood_results/blood_results_fbc.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/models/blood_results/blood_results_glu.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/models/blood_results/blood_results_hba1c.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/models/blood_results/blood_results_ins.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/models/blood_results/blood_results_lft.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/models/blood_results/blood_results_lipids.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/models/blood_results/blood_results_rft.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/models/complications.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/models/complications_glycemia.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/models/concomitant_medication.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/models/egfr_drop_notification.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/models/eq5d3l.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/models/followup_vitals.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/models/glucose_review.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/models/health_economics/health_economics_simple.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/models/malaria_test.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/models/medication_adherence.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/models/mnsi.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/models/next_appointment.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/models/off_study_drug.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/models/other_arv_regimens.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/models/sf12.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/models/study_medication.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/models/subject_requisition.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/models/subject_visit_missed.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/models/todo.txt +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/static/meta_subject/slider.css +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/static/meta_subject/slider.png +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/templates/meta_subject/endpoint_review_instructions.html +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/templates/meta_subject/widgets/slider.html +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_subject/urls.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_visit_schedule/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_visit_schedule/apps.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_visit_schedule/constants.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_visit_schedule/migrations/__init__.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_visit_schedule/models.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_visit_schedule/visit_schedules/phase_three/crfs.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_visit_schedule/visit_schedules/phase_three/crfs_pregnancy.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_visit_schedule/visit_schedules/phase_three/requisitions.py +0 -0
- {meta_edc-1.1.10 → meta_edc-1.1.13/src}/meta_visit_schedule/visit_schedules/phase_three/visit_schedule.py +0 -0
meta_edc-1.1.13/PKG-INFO
ADDED
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: meta-edc
|
|
3
|
+
Version: 1.1.13
|
|
4
|
+
Summary: META Trial EDC (https://www.isrctn.com/ISRCTN76157257)
|
|
5
|
+
Keywords: django,clinicedc,META EDC,EDC,clinical trials,META Trial,ISRCTN76157257
|
|
6
|
+
Author: Erik van Widenfelt, Jonathan Willitts
|
|
7
|
+
Author-email: Erik van Widenfelt <ew2789@gmail.com>, Jonathan Willitts <j.willitts@ucl.ac.uk>
|
|
8
|
+
License-Expression: GPL-3.0-or-later
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Classifier: Environment :: Web Environment
|
|
11
|
+
Classifier: Framework :: Django
|
|
12
|
+
Classifier: Framework :: Django :: 5.2
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Intended Audience :: Science/Research
|
|
15
|
+
Classifier: Operating System :: OS Independent
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
18
|
+
Requires-Dist: clinicedc>=2.0.13
|
|
19
|
+
Requires-Dist: edc-he>=1.1.0
|
|
20
|
+
Requires-Dist: edc-microscopy>=1.1.1
|
|
21
|
+
Requires-Dist: edc-mnsi>=1.1.3
|
|
22
|
+
Requires-Dist: edc-phq9>=1.0.1
|
|
23
|
+
Requires-Dist: edc-qol>=1.1.2
|
|
24
|
+
Requires-Dist: psycopg2>=2.9.10
|
|
25
|
+
Requires-Python: >=3.12, <3.14
|
|
26
|
+
Description-Content-Type: text/x-rst
|
|
27
|
+
|
|
28
|
+
|pypi| |actions| |codecov| |downloads| |clinicedc|
|
|
29
|
+
|
|
30
|
+
META EDC
|
|
31
|
+
========
|
|
32
|
+
|
|
33
|
+
Metformin treatment in Africa - META
|
|
34
|
+
|
|
35
|
+
* https://www.ucl.ac.uk/global-health/research/z-research/respond-africa/metformin-treatment-africa-meta
|
|
36
|
+
* https://www.inteafrica.org/related-projects/meta-trial/
|
|
37
|
+
* https://www.lstmed.ac.uk/research/departments/international-public-health/respond-africa/meta
|
|
38
|
+
* http://www.isrctn.com/ISRCTN76157257
|
|
39
|
+
|
|
40
|
+
py 3.12+ / DJ 5.2 using the `Clinic EDC <https://github.com/clinicedc/edc>`_ framework
|
|
41
|
+
|
|
42
|
+
This codebase is used for two randomized clinical trials:
|
|
43
|
+
|
|
44
|
+
____
|
|
45
|
+
|
|
46
|
+
META PHASE II:
|
|
47
|
+
|
|
48
|
+
(final version `0.1.77 <https://github.com/meta-trial/meta-edc/tree/0.1.77>`_)
|
|
49
|
+
|
|
50
|
+
Metformin Treatment for Diabetes Prevention in Africa: META Trial
|
|
51
|
+
TASO, MRC/UVRI/LSHTM, NIMR – TZ and Liverpool School of Tropical Medicine (ISRCTN76157257)
|
|
52
|
+
http://www.isrctn.com/ISRCTN76157257
|
|
53
|
+
|
|
54
|
+
____
|
|
55
|
+
|
|
56
|
+
META PHASE III:
|
|
57
|
+
|
|
58
|
+
A randomised placebo-controlled double-blind phase III trial to determine the effects of metformin versus placebo on the incidence of diabetes in HIV-infected persons with pre-diabetes in Tanzania.
|
|
59
|
+
|
|
60
|
+
Liverpool School of Tropical Medicine
|
|
61
|
+
|
|
62
|
+
EDCTP grant number: RIA2018CO-2513
|
|
63
|
+
|
|
64
|
+
Trial registration: ISCRTN 77382043
|
|
65
|
+
|
|
66
|
+
https://ico.org.uk/ESDWebPages/Entry/Z4763134
|
|
67
|
+
|
|
68
|
+
____
|
|
69
|
+
|
|
70
|
+
See also https://github.com/clinicedc/edc
|
|
71
|
+
|
|
72
|
+
|django|
|
|
73
|
+
|
|
74
|
+
Installation
|
|
75
|
+
------------
|
|
76
|
+
|
|
77
|
+
As of version 1.1.10, we are building and deploying with `uv <https://docs.astral.sh/uv>`_.
|
|
78
|
+
|
|
79
|
+
Here we assume you have your DB setup and already have your ``.env`` file.
|
|
80
|
+
|
|
81
|
+
First-time install
|
|
82
|
+
++++++++++++++++++
|
|
83
|
+
|
|
84
|
+
Assuming you are logged into the account ``myaccount``:
|
|
85
|
+
|
|
86
|
+
.. code-block:: bash
|
|
87
|
+
|
|
88
|
+
mkdir -p ~/.etc/meta && \
|
|
89
|
+
mkdir ~/edc && \
|
|
90
|
+
cd ~/edc && \
|
|
91
|
+
uv venv && \
|
|
92
|
+
uv pip install -U meta-edc==1.1.12 && \
|
|
93
|
+
wget https://raw.githubusercontent.com/meta-trial/meta-edc/1.1.12/manage.py && \
|
|
94
|
+
uv pip freeze | grep meta-edc
|
|
95
|
+
|
|
96
|
+
Copy your ``.env`` file to ``~/.etc``.
|
|
97
|
+
|
|
98
|
+
Place this at or near the end of your ``.bashrc``:
|
|
99
|
+
|
|
100
|
+
.. code-block:: bash
|
|
101
|
+
|
|
102
|
+
# >>> EDC using uv >>>
|
|
103
|
+
export DJANGO_SETTINGS_MODULE=meta_edc.settings.uat
|
|
104
|
+
export META_PHASE=3
|
|
105
|
+
export DJANGO_BASE_DIR=/home/myaccount/edc
|
|
106
|
+
export DJANGO_ENV_DIR=/home/myaccount/.etc/
|
|
107
|
+
cd ~/edc
|
|
108
|
+
source .venv/bin/activate
|
|
109
|
+
export PATH="/home/myaccount/edc:$PATH"
|
|
110
|
+
# <<< EDC using uv <<<
|
|
111
|
+
|
|
112
|
+
Source ``.bashrc`` and run ``manage.py check``.
|
|
113
|
+
|
|
114
|
+
.. code-block:: bash
|
|
115
|
+
|
|
116
|
+
source ~/.bashrc && \
|
|
117
|
+
cd ~/edc && \
|
|
118
|
+
python manage.py check
|
|
119
|
+
|
|
120
|
+
If all is OK, run ``migrate``:
|
|
121
|
+
|
|
122
|
+
Explicitly specify the settings file when using ``migrate``.
|
|
123
|
+
|
|
124
|
+
* live: ``--settings=meta_edc.settings.live``
|
|
125
|
+
* uat: ``--settings=meta_edc.settings.uat``
|
|
126
|
+
* debug: ``--settings=meta_edc.settings.debug``
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
.. code-block:: bash
|
|
130
|
+
|
|
131
|
+
cd ~/edc && \
|
|
132
|
+
python manage.py migrate --settings=meta_edc.settings.live
|
|
133
|
+
|
|
134
|
+
Update an existing install
|
|
135
|
+
++++++++++++++++++++++++++
|
|
136
|
+
|
|
137
|
+
From the above example:
|
|
138
|
+
|
|
139
|
+
.. code-block:: bash
|
|
140
|
+
|
|
141
|
+
cd ~/edc && \
|
|
142
|
+
uv venv --clear && \
|
|
143
|
+
uv pip install -U meta-edc==1.1.12 && \
|
|
144
|
+
wget -O manage.py https://raw.githubusercontent.com/meta-trial/meta-edc/1.1.10/manage.py && \
|
|
145
|
+
uv pip freeze | grep meta-edc && \
|
|
146
|
+
python manage.py check
|
|
147
|
+
|
|
148
|
+
If all is OK, run ``migrate``
|
|
149
|
+
|
|
150
|
+
.. code-block:: bash
|
|
151
|
+
|
|
152
|
+
cd ~/edc && \
|
|
153
|
+
python manage.py migrate --settings=meta_edc.settings.live
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
.. |pypi| image:: https://img.shields.io/pypi/v/meta-edc.svg
|
|
158
|
+
:target: https://pypi.python.org/pypi/meta-edc
|
|
159
|
+
|
|
160
|
+
.. |actions| image:: https://github.com/meta-trial/meta-edc/actions/workflows/build.yml/badge.svg
|
|
161
|
+
:target: https://github.com/meta-trial/meta-edc/actions/workflows/build.yml
|
|
162
|
+
|
|
163
|
+
.. |codecov| image:: https://codecov.io/gh/meta-trial/meta-edc/branch/develop/graph/badge.svg
|
|
164
|
+
:target: https://codecov.io/gh/meta-trial/meta-edc
|
|
165
|
+
|
|
166
|
+
.. |downloads| image:: https://pepy.tech/badge/meta-edc
|
|
167
|
+
:target: https://pepy.tech/project/meta-edc
|
|
168
|
+
|
|
169
|
+
.. |django| image:: https://www.djangoproject.com/m/img/badges/djangomade124x25.gif
|
|
170
|
+
:target: http://www.djangoproject.com/
|
|
171
|
+
:alt: Made with Django
|
|
172
|
+
|
|
173
|
+
.. |clinicedc| image:: https://img.shields.io/badge/framework-Clinic_EDC-green
|
|
174
|
+
:alt:Made with clinicedc
|
|
175
|
+
:target: https://github.com/clinicedc
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
|pypi| |actions| |codecov| |downloads| |clinicedc|
|
|
2
|
+
|
|
3
|
+
META EDC
|
|
4
|
+
========
|
|
5
|
+
|
|
6
|
+
Metformin treatment in Africa - META
|
|
7
|
+
|
|
8
|
+
* https://www.ucl.ac.uk/global-health/research/z-research/respond-africa/metformin-treatment-africa-meta
|
|
9
|
+
* https://www.inteafrica.org/related-projects/meta-trial/
|
|
10
|
+
* https://www.lstmed.ac.uk/research/departments/international-public-health/respond-africa/meta
|
|
11
|
+
* http://www.isrctn.com/ISRCTN76157257
|
|
12
|
+
|
|
13
|
+
py 3.12+ / DJ 5.2 using the `Clinic EDC <https://github.com/clinicedc/edc>`_ framework
|
|
14
|
+
|
|
15
|
+
This codebase is used for two randomized clinical trials:
|
|
16
|
+
|
|
17
|
+
____
|
|
18
|
+
|
|
19
|
+
META PHASE II:
|
|
20
|
+
|
|
21
|
+
(final version `0.1.77 <https://github.com/meta-trial/meta-edc/tree/0.1.77>`_)
|
|
22
|
+
|
|
23
|
+
Metformin Treatment for Diabetes Prevention in Africa: META Trial
|
|
24
|
+
TASO, MRC/UVRI/LSHTM, NIMR – TZ and Liverpool School of Tropical Medicine (ISRCTN76157257)
|
|
25
|
+
http://www.isrctn.com/ISRCTN76157257
|
|
26
|
+
|
|
27
|
+
____
|
|
28
|
+
|
|
29
|
+
META PHASE III:
|
|
30
|
+
|
|
31
|
+
A randomised placebo-controlled double-blind phase III trial to determine the effects of metformin versus placebo on the incidence of diabetes in HIV-infected persons with pre-diabetes in Tanzania.
|
|
32
|
+
|
|
33
|
+
Liverpool School of Tropical Medicine
|
|
34
|
+
|
|
35
|
+
EDCTP grant number: RIA2018CO-2513
|
|
36
|
+
|
|
37
|
+
Trial registration: ISCRTN 77382043
|
|
38
|
+
|
|
39
|
+
https://ico.org.uk/ESDWebPages/Entry/Z4763134
|
|
40
|
+
|
|
41
|
+
____
|
|
42
|
+
|
|
43
|
+
See also https://github.com/clinicedc/edc
|
|
44
|
+
|
|
45
|
+
|django|
|
|
46
|
+
|
|
47
|
+
Installation
|
|
48
|
+
------------
|
|
49
|
+
|
|
50
|
+
As of version 1.1.10, we are building and deploying with `uv <https://docs.astral.sh/uv>`_.
|
|
51
|
+
|
|
52
|
+
Here we assume you have your DB setup and already have your ``.env`` file.
|
|
53
|
+
|
|
54
|
+
First-time install
|
|
55
|
+
++++++++++++++++++
|
|
56
|
+
|
|
57
|
+
Assuming you are logged into the account ``myaccount``:
|
|
58
|
+
|
|
59
|
+
.. code-block:: bash
|
|
60
|
+
|
|
61
|
+
mkdir -p ~/.etc/meta && \
|
|
62
|
+
mkdir ~/edc && \
|
|
63
|
+
cd ~/edc && \
|
|
64
|
+
uv venv && \
|
|
65
|
+
uv pip install -U meta-edc==1.1.12 && \
|
|
66
|
+
wget https://raw.githubusercontent.com/meta-trial/meta-edc/1.1.12/manage.py && \
|
|
67
|
+
uv pip freeze | grep meta-edc
|
|
68
|
+
|
|
69
|
+
Copy your ``.env`` file to ``~/.etc``.
|
|
70
|
+
|
|
71
|
+
Place this at or near the end of your ``.bashrc``:
|
|
72
|
+
|
|
73
|
+
.. code-block:: bash
|
|
74
|
+
|
|
75
|
+
# >>> EDC using uv >>>
|
|
76
|
+
export DJANGO_SETTINGS_MODULE=meta_edc.settings.uat
|
|
77
|
+
export META_PHASE=3
|
|
78
|
+
export DJANGO_BASE_DIR=/home/myaccount/edc
|
|
79
|
+
export DJANGO_ENV_DIR=/home/myaccount/.etc/
|
|
80
|
+
cd ~/edc
|
|
81
|
+
source .venv/bin/activate
|
|
82
|
+
export PATH="/home/myaccount/edc:$PATH"
|
|
83
|
+
# <<< EDC using uv <<<
|
|
84
|
+
|
|
85
|
+
Source ``.bashrc`` and run ``manage.py check``.
|
|
86
|
+
|
|
87
|
+
.. code-block:: bash
|
|
88
|
+
|
|
89
|
+
source ~/.bashrc && \
|
|
90
|
+
cd ~/edc && \
|
|
91
|
+
python manage.py check
|
|
92
|
+
|
|
93
|
+
If all is OK, run ``migrate``:
|
|
94
|
+
|
|
95
|
+
Explicitly specify the settings file when using ``migrate``.
|
|
96
|
+
|
|
97
|
+
* live: ``--settings=meta_edc.settings.live``
|
|
98
|
+
* uat: ``--settings=meta_edc.settings.uat``
|
|
99
|
+
* debug: ``--settings=meta_edc.settings.debug``
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
.. code-block:: bash
|
|
103
|
+
|
|
104
|
+
cd ~/edc && \
|
|
105
|
+
python manage.py migrate --settings=meta_edc.settings.live
|
|
106
|
+
|
|
107
|
+
Update an existing install
|
|
108
|
+
++++++++++++++++++++++++++
|
|
109
|
+
|
|
110
|
+
From the above example:
|
|
111
|
+
|
|
112
|
+
.. code-block:: bash
|
|
113
|
+
|
|
114
|
+
cd ~/edc && \
|
|
115
|
+
uv venv --clear && \
|
|
116
|
+
uv pip install -U meta-edc==1.1.12 && \
|
|
117
|
+
wget -O manage.py https://raw.githubusercontent.com/meta-trial/meta-edc/1.1.10/manage.py && \
|
|
118
|
+
uv pip freeze | grep meta-edc && \
|
|
119
|
+
python manage.py check
|
|
120
|
+
|
|
121
|
+
If all is OK, run ``migrate``
|
|
122
|
+
|
|
123
|
+
.. code-block:: bash
|
|
124
|
+
|
|
125
|
+
cd ~/edc && \
|
|
126
|
+
python manage.py migrate --settings=meta_edc.settings.live
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
.. |pypi| image:: https://img.shields.io/pypi/v/meta-edc.svg
|
|
131
|
+
:target: https://pypi.python.org/pypi/meta-edc
|
|
132
|
+
|
|
133
|
+
.. |actions| image:: https://github.com/meta-trial/meta-edc/actions/workflows/build.yml/badge.svg
|
|
134
|
+
:target: https://github.com/meta-trial/meta-edc/actions/workflows/build.yml
|
|
135
|
+
|
|
136
|
+
.. |codecov| image:: https://codecov.io/gh/meta-trial/meta-edc/branch/develop/graph/badge.svg
|
|
137
|
+
:target: https://codecov.io/gh/meta-trial/meta-edc
|
|
138
|
+
|
|
139
|
+
.. |downloads| image:: https://pepy.tech/badge/meta-edc
|
|
140
|
+
:target: https://pepy.tech/project/meta-edc
|
|
141
|
+
|
|
142
|
+
.. |django| image:: https://www.djangoproject.com/m/img/badges/djangomade124x25.gif
|
|
143
|
+
:target: http://www.djangoproject.com/
|
|
144
|
+
:alt: Made with Django
|
|
145
|
+
|
|
146
|
+
.. |clinicedc| image:: https://img.shields.io/badge/framework-Clinic_EDC-green
|
|
147
|
+
:alt:Made with clinicedc
|
|
148
|
+
:target: https://github.com/clinicedc
|
|
@@ -0,0 +1,198 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "meta-edc"
|
|
3
|
+
version = "1.1.13"
|
|
4
|
+
description = "META Trial EDC (https://www.isrctn.com/ISRCTN76157257)"
|
|
5
|
+
readme = "README.rst"
|
|
6
|
+
keywords = [
|
|
7
|
+
"django",
|
|
8
|
+
"clinicedc",
|
|
9
|
+
"META EDC",
|
|
10
|
+
"EDC",
|
|
11
|
+
"clinical trials",
|
|
12
|
+
"META Trial",
|
|
13
|
+
"ISRCTN76157257",
|
|
14
|
+
]
|
|
15
|
+
authors = [
|
|
16
|
+
{ name = "Erik van Widenfelt", email = "ew2789@gmail.com" },
|
|
17
|
+
{ name = "Jonathan Willitts", email = "j.willitts@ucl.ac.uk" }
|
|
18
|
+
]
|
|
19
|
+
classifiers = [
|
|
20
|
+
"Environment :: Web Environment",
|
|
21
|
+
"Framework :: Django",
|
|
22
|
+
"Framework :: Django :: 5.2",
|
|
23
|
+
"Intended Audience :: Developers",
|
|
24
|
+
"Intended Audience :: Science/Research",
|
|
25
|
+
"Operating System :: OS Independent",
|
|
26
|
+
"Programming Language :: Python :: 3.12",
|
|
27
|
+
"Programming Language :: Python :: 3.13",
|
|
28
|
+
]
|
|
29
|
+
license = "GPL-3.0-or-later"
|
|
30
|
+
license-files = ["LICEN[CS]E*"]
|
|
31
|
+
requires-python = '>=3.12,<3.14'
|
|
32
|
+
dependencies = [
|
|
33
|
+
"clinicedc>=2.0.13",
|
|
34
|
+
"edc-he>=1.1.0",
|
|
35
|
+
"edc-microscopy>=1.1.1",
|
|
36
|
+
"edc-mnsi>=1.1.3",
|
|
37
|
+
"edc-phq9>=1.0.1",
|
|
38
|
+
"edc-qol>=1.1.2",
|
|
39
|
+
"psycopg2>=2.9.10",
|
|
40
|
+
]
|
|
41
|
+
|
|
42
|
+
[build-system]
|
|
43
|
+
requires = ["uv_build>=0.8.2,<0.9.0"]
|
|
44
|
+
build-backend = "uv_build"
|
|
45
|
+
|
|
46
|
+
[tool.uv.build-backend]
|
|
47
|
+
module-root = "src"
|
|
48
|
+
module-name = [
|
|
49
|
+
"meta_ae",
|
|
50
|
+
"meta_analytics",
|
|
51
|
+
"meta_auth",
|
|
52
|
+
"meta_consent",
|
|
53
|
+
"meta_dashboard",
|
|
54
|
+
"meta_data_manager",
|
|
55
|
+
"meta_edc",
|
|
56
|
+
"meta_export",
|
|
57
|
+
"meta_labs",
|
|
58
|
+
"meta_lists",
|
|
59
|
+
"meta_pharmacy",
|
|
60
|
+
"meta_prn",
|
|
61
|
+
"meta_rando",
|
|
62
|
+
"meta_reports",
|
|
63
|
+
"meta_screening",
|
|
64
|
+
"meta_sites",
|
|
65
|
+
"meta_subject",
|
|
66
|
+
"meta_visit_schedule",
|
|
67
|
+
]
|
|
68
|
+
source-include = ["meta_*/templates/**", "meta_*/locale/**", "locale/**"]
|
|
69
|
+
source-exclude = ["meta_*/tests/**", "meta_*/notebooks/**", "tests/**"]
|
|
70
|
+
namespace = false
|
|
71
|
+
|
|
72
|
+
[tool.ruff]
|
|
73
|
+
line-length = 95
|
|
74
|
+
indent-width = 4
|
|
75
|
+
target-version = "py312"
|
|
76
|
+
exclude = ["migrations", ".tox", ".venv"]
|
|
77
|
+
|
|
78
|
+
[tool.ruff.lint]
|
|
79
|
+
select = [
|
|
80
|
+
"A",
|
|
81
|
+
"ARG",
|
|
82
|
+
"B",
|
|
83
|
+
"C90",
|
|
84
|
+
"COM",
|
|
85
|
+
"DJ",
|
|
86
|
+
"DTZ",
|
|
87
|
+
"E",
|
|
88
|
+
"F",
|
|
89
|
+
"FA",
|
|
90
|
+
"FURB",
|
|
91
|
+
"I",
|
|
92
|
+
"INT",
|
|
93
|
+
"N",
|
|
94
|
+
"PD",
|
|
95
|
+
"PERF",
|
|
96
|
+
"PL",
|
|
97
|
+
"PLR",
|
|
98
|
+
"PTH",
|
|
99
|
+
"RET",
|
|
100
|
+
"RUF",
|
|
101
|
+
"S",
|
|
102
|
+
"SIM",
|
|
103
|
+
"T20",
|
|
104
|
+
"TRY",
|
|
105
|
+
"UP",
|
|
106
|
+
"W",
|
|
107
|
+
# "FIX",
|
|
108
|
+
]
|
|
109
|
+
ignore = ["DJ008", "DJ007", "DJ006", "COM812", "PLC0206", "PLR2004", "TRY003"]
|
|
110
|
+
|
|
111
|
+
[tool.ruff.lint.per-file-ignores]
|
|
112
|
+
"__init__.py" = ["F401"]
|
|
113
|
+
|
|
114
|
+
[tool.ruff.lint.mccabe]
|
|
115
|
+
max-complexity = 12
|
|
116
|
+
|
|
117
|
+
[tool.ruff.format]
|
|
118
|
+
quote-style = "double"
|
|
119
|
+
indent-style = "space"
|
|
120
|
+
skip-magic-trailing-comma = false
|
|
121
|
+
line-ending = "auto"
|
|
122
|
+
[tool.coverage.run]
|
|
123
|
+
parallel = false
|
|
124
|
+
branch = true
|
|
125
|
+
source = ["meta_edc"]
|
|
126
|
+
|
|
127
|
+
[tool.coverage.paths]
|
|
128
|
+
source = ["meta_edc"]
|
|
129
|
+
|
|
130
|
+
[tool.coverage.report]
|
|
131
|
+
show_missing = true
|
|
132
|
+
skip_covered = true
|
|
133
|
+
omit = ["*.txt", "*/migrations/*"]
|
|
134
|
+
exclude_lines = [
|
|
135
|
+
"pragma: no cover",
|
|
136
|
+
"if TYPE_CHECKING:",
|
|
137
|
+
]
|
|
138
|
+
|
|
139
|
+
[dependency-groups]
|
|
140
|
+
lint = [
|
|
141
|
+
"ruff>=0.12.5",
|
|
142
|
+
]
|
|
143
|
+
|
|
144
|
+
test = [
|
|
145
|
+
"clinicedc-tests>=0.1.6",
|
|
146
|
+
"django-webtest>=1.9.13",
|
|
147
|
+
"edc-test-settings>=1.1.2",
|
|
148
|
+
"faker>=37.4.2",
|
|
149
|
+
"model-bakery>=1.20.5",
|
|
150
|
+
"time-machine>=2.16.0",
|
|
151
|
+
]
|
|
152
|
+
notebook = [
|
|
153
|
+
"dj-notebook>=0.7.0",
|
|
154
|
+
"great-tables>=0.18.0",
|
|
155
|
+
"matplotlib>=3.10.3",
|
|
156
|
+
"matplotlib-venn>=1.1.2",
|
|
157
|
+
"numpy>=2.3.2",
|
|
158
|
+
"pandas>=2.3.1",
|
|
159
|
+
"pdfkit>=1.0.0",
|
|
160
|
+
"scikit-learn>=1.7.1",
|
|
161
|
+
"scipy>=1.16.0",
|
|
162
|
+
"selenium>=4.34.2",
|
|
163
|
+
"tabulate>=0.9.0",
|
|
164
|
+
]
|
|
165
|
+
|
|
166
|
+
develop = [
|
|
167
|
+
'django>=5.2.4,<5.3',
|
|
168
|
+
"clinicedc>=2.0.10",
|
|
169
|
+
"time-machine>=2.16.0",
|
|
170
|
+
'edc-he',
|
|
171
|
+
'edc-microscopy',
|
|
172
|
+
'edc-mnsi',
|
|
173
|
+
# 'edc-next-appointment',
|
|
174
|
+
'edc-phq9',
|
|
175
|
+
'edc-qol',
|
|
176
|
+
'edc-test-settings',
|
|
177
|
+
"django-redis>=6.0.0",
|
|
178
|
+
"ipython>=9.4.0",
|
|
179
|
+
]
|
|
180
|
+
|
|
181
|
+
[tool.uv.sources]
|
|
182
|
+
meta-edc = { workspace = true }
|
|
183
|
+
clinicedc = { path = "../clinicedc", editable = true }
|
|
184
|
+
django-audit-fields = { path = "../django-audit-fields", editable = true }
|
|
185
|
+
django-crypto-fields = { path = "../django-crypto-fields", editable = true }
|
|
186
|
+
django-logentry-admin = { path = "../django-logentry-admin", editable = true }
|
|
187
|
+
django-multisite2 = { path = "../django-multisite2", editable = true }
|
|
188
|
+
django-revision = { path = "../django-revision", editable = true }
|
|
189
|
+
django-simple-history = { path = "../django-simple-history", editable = true }
|
|
190
|
+
edc-microbiology = { path = "../edc-microbiology", editable = true }
|
|
191
|
+
edc-microscopy = { path = "../edc-microscopy", editable = true }
|
|
192
|
+
edc-mnsi = { path = "../edc-mnsi", editable = true }
|
|
193
|
+
edc-next-appointment = { path = "../edc-next-appointment", editable = true }
|
|
194
|
+
edc-phq9 = { path = "../edc-phq9", editable = true }
|
|
195
|
+
edc-qol = { path = "../edc-qol", editable = true }
|
|
196
|
+
edc-he = { path = "../edc-he", editable = true }
|
|
197
|
+
edc-test-settings = { path = "../edc-test-settings", editable = true }
|
|
198
|
+
|