meta-edc 0.3.39__py3-none-any.whl → 1.4.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- meta_ae/action_items.py +38 -27
- meta_ae/admin/__init__.py +11 -0
- meta_ae/admin/ae_initial_admin.py +5 -2
- meta_ae/admin/ae_susar_admin.py +1 -1
- meta_ae/admin/death_report_admin.py +1 -1
- meta_ae/admin/modeladmin_mixins.py +14 -15
- meta_ae/baker_recipes.py +4 -6
- meta_ae/choices.py +1 -1
- meta_ae/forms/__init__.py +13 -0
- meta_ae/forms/death_report_form.py +1 -1
- meta_ae/forms/modelform_mixins.py +2 -2
- meta_ae/list_data.py +1 -1
- meta_ae/migrations/0001_initial.py +27 -27
- meta_ae/migrations/0006_aelocalreview_aesponsorreview.py +5 -5
- meta_ae/migrations/0017_auto_20221130_2257.py +1 -1
- meta_ae/migrations/0022_historicalhospitalization_hospitalization.py +5 -13
- meta_ae/migrations/0023_alter_aefollowup_action_identifier_and_more.py +2017 -0
- meta_ae/model_mixins/__init__.py +2 -0
- meta_ae/model_mixins/ae_review_model_mixin.py +6 -6
- meta_ae/model_mixins/death_report_model_mixin.py +3 -3
- meta_ae/models/__init__.py +13 -0
- meta_ae/models/hospitalization.py +3 -3
- meta_ae/pdf_reports/__init__.py +2 -0
- meta_ae/templatetags/meta_ae_extras.py +4 -6
- meta_analytics/.DS_Store +0 -0
- meta_analytics/README.rst +1 -2
- meta_analytics/dataframes/__init__.py +27 -0
- meta_analytics/dataframes/constants.py +5 -2
- meta_analytics/dataframes/get_eos_df.py +16 -4
- meta_analytics/dataframes/get_glucose_df.py +166 -0
- meta_analytics/dataframes/get_glucose_fbg_df.py +26 -0
- meta_analytics/dataframes/get_glucose_fbg_ogtt_df.py +21 -0
- meta_analytics/dataframes/get_last_imp_visits_df.py +12 -10
- meta_analytics/dataframes/glucose_endpoints/__init__.py +2 -0
- meta_analytics/dataframes/glucose_endpoints/endpoint_by_date.py +125 -124
- meta_analytics/dataframes/glucose_endpoints/glucose_endpoints_by_date.py +111 -235
- meta_analytics/dataframes/screening/__init__.py +2 -0
- meta_analytics/dataframes/screening/get_glucose_tested_only_df.py +1 -2
- meta_analytics/dataframes/screening/get_screening_df.py +9 -15
- meta_analytics/dataframes/utils.py +21 -12
- meta_analytics/get_tables.py +1 -2
- meta_analytics/tables/__init__.py +2 -0
- meta_analytics/tables/enrolled/glucose.py +2 -1
- meta_analytics/utils.py +81 -0
- meta_auth/auths.py +1 -1
- meta_consent/action_items.py +22 -3
- meta_consent/admin/__init__.py +7 -0
- meta_consent/admin/actions/__init__.py +2 -0
- meta_consent/admin/actions/create_missing_prescriptions.py +2 -2
- meta_consent/admin/list_filters.py +22 -0
- meta_consent/admin/modeladmin_mixins.py +4 -5
- meta_consent/admin/subject_consent_v1_ext_admin.py +93 -0
- meta_consent/baker_recipes.py +7 -7
- meta_consent/consents.py +15 -2
- meta_consent/constants.py +1 -0
- meta_consent/form_validators/__init__.py +2 -0
- meta_consent/forms/__init__.py +8 -0
- meta_consent/forms/subject_consent_v1_ext_form.py +47 -0
- meta_consent/forms/subject_reconsent_form.py +4 -4
- meta_consent/management/commands/create_missing_prescriptions.py +5 -3
- meta_consent/migrations/0001_initial.py +9 -9
- meta_consent/migrations/0024_historicalsubjectconsentv1.py +3 -8
- meta_consent/migrations/0026_historicalsubjectconsentv1ext_subjectconsentv1ext.py +535 -0
- meta_consent/migrations/0027_auto_20250111_0344.py +30 -0
- meta_consent/migrations/0028_historicalsubjectconsentv1ext_assessment_score_and_more.py +162 -0
- meta_consent/migrations/0029_alter_historicalsubjectconsentv1ext_agrees_to_extension_and_more.py +33 -0
- meta_consent/migrations/0030_auto_20250120_2114.py +40 -0
- meta_consent/migrations/0031_alter_historicalsubjectconsent_guardian_name_and_more.py +124 -0
- meta_consent/migrations/0032_alter_historicalsubjectconsent_device_created_and_more.py +678 -0
- meta_consent/migrations/0033_historicalsubjectconsentspfq_subjectconsentspfq.py +615 -0
- meta_consent/migrations/0034_remove_subjectconsentspfq_site_and_more.py +23 -0
- meta_consent/migrations/0035_alter_historicalsubjectconsent_consent_definition_name_and_more.py +43 -0
- meta_consent/models/__init__.py +10 -0
- meta_consent/models/model_mixins.py +1 -2
- meta_consent/models/signals.py +25 -11
- meta_consent/models/subject_consent.py +2 -2
- meta_consent/models/subject_consent_v1.py +0 -1
- meta_consent/models/subject_consent_v1_ext.py +34 -0
- meta_consent/models/subject_reconsent.py +4 -4
- meta_dashboard/navbars.py +2 -6
- meta_dashboard/patterns.py +1 -1
- meta_dashboard/templates/meta_dashboard/{bootstrap3/buttons → buttons}/eligibility_button.html +1 -1
- meta_dashboard/templates/meta_dashboard/{bootstrap3/buttons → buttons}/screening_button.html +1 -1
- meta_dashboard/templates/meta_dashboard/subject/dashboard/sidebar.html +24 -0
- meta_dashboard/templates/meta_dashboard/{bootstrap3/subject → subject}/dashboard/top_bar.html +1 -1
- meta_dashboard/templates/meta_dashboard/subject/dashboard.html +14 -0
- meta_dashboard/templatetags/meta_dashboard_extras.py +9 -14
- meta_dashboard/urls.py +5 -5
- meta_dashboard/view_utils/__init__.py +13 -0
- meta_dashboard/view_utils/subject_screening_button.py +13 -20
- meta_dashboard/views/__init__.py +8 -0
- meta_dashboard/views/ae/__init__.py +2 -0
- meta_dashboard/views/ae/ae_listboard_view.py +1 -1
- meta_dashboard/views/ae/death_report_listboard_view.py +1 -1
- meta_dashboard/views/screening/__init__.py +2 -0
- meta_dashboard/views/screening/listboard_view.py +2 -3
- meta_dashboard/views/subject/__init__.py +2 -0
- meta_dashboard/views/subject/dashboard/__init__.py +2 -0
- meta_dashboard/views/subject/dashboard/dashboard_view.py +19 -8
- meta_dashboard/views/subject/listboard/__init__.py +2 -0
- meta_dashboard/views/subject/listboard/listboard_view.py +2 -3
- meta_edc/__init__.py +5 -9
- meta_edc/admin.py +3 -4
- meta_edc/celery.py +2 -2
- meta_edc/celery_live.py +19 -0
- meta_edc/celery_uat.py +25 -0
- meta_edc/management/commands/update_forms_reference.py +16 -14
- meta_edc/meta_version.py +2 -2
- meta_edc/navbars.py +7 -5
- meta_edc/settings/debug.py +13 -4
- meta_edc/settings/defaults.py +55 -18
- meta_edc/settings/live.py +4 -1
- meta_edc/settings/logging.py +9 -4
- meta_edc/settings/minimal.py +4 -5
- meta_edc/settings/uat.py +3 -1
- meta_edc/templates/meta_edc/{bootstrap3/base.html → base.html} +1 -1
- meta_edc/templates/meta_edc/{bootstrap3/home.html → home.html} +2 -2
- meta_edc/urls.py +3 -1
- meta_edc/utils.py +3 -1
- meta_edc/views/__init__.py +2 -0
- meta_edc/views/home_view.py +1 -2
- meta_edc-1.4.0.dist-info/METADATA +174 -0
- {meta_edc-0.3.39.dist-info → meta_edc-1.4.0.dist-info}/RECORD +578 -586
- meta_edc-1.4.0.dist-info/WHEEL +4 -0
- meta_labs/list_data.py +2 -2
- meta_labs/reportables.py +80 -11
- meta_lists/list_data.py +13 -4
- meta_lists/migrations/0008_auto_20200528_1517.py +2 -2
- meta_lists/migrations/0019_auto_20250128_0143.py +48 -0
- meta_lists/migrations/0020_alter_abnormalfootappearanceobservations_extra_value_and_more.py +404 -0
- meta_pharmacy/admin/__init__.py +5 -0
- meta_pharmacy/admin/rx_admin.py +1 -0
- meta_pharmacy/admin/substitutions_admin.py +3 -3
- meta_pharmacy/constants.py +1 -1
- meta_pharmacy/forms/__init__.py +2 -0
- meta_pharmacy/forms/rx_form.py +0 -1
- meta_pharmacy/forms/substitutions_form.py +6 -4
- meta_pharmacy/labels/__init__.py +5 -2
- meta_pharmacy/labels/draw_label_for_subject_with_barcode.py +4 -1
- meta_pharmacy/labels/draw_label_with_test_data.py +2 -2
- meta_pharmacy/labels/label_data.py +1 -2
- meta_pharmacy/labels/print_sheets.py +4 -6
- meta_pharmacy/management/commands/update_initial_pharmacy_data.py +4 -3
- meta_pharmacy/migrations/0002_initial.py +7 -20
- meta_pharmacy/migrations/0003_auto_20240909_2335.py +3 -2
- meta_pharmacy/migrations/0006_lotnumber_label.py +5 -14
- meta_pharmacy/migrations/0008_remove_lotnumber_medication_and_more.py +5 -6
- meta_pharmacy/migrations/0010_alter_historicallabeldata_device_created_and_more.py +382 -0
- meta_pharmacy/models/__init__.py +7 -0
- meta_pharmacy/models/label_data.py +4 -5
- meta_pharmacy/models/rx_label.py +0 -1
- meta_pharmacy/models/substitutions.py +4 -4
- meta_pharmacy/prepare_meta_pharmacy.py +1 -1
- meta_pharmacy/utils/__init__.py +2 -0
- meta_pharmacy/utils/update_initial_pharmacy_data.py +1 -1
- meta_prn/action_items.py +44 -45
- meta_prn/admin/__init__.py +16 -0
- meta_prn/admin/dm_referral_admin.py +2 -1
- meta_prn/admin/end_of_study_admin.py +26 -15
- meta_prn/admin/loss_to_followup_admin.py +3 -2
- meta_prn/admin/off_study_medication_admin.py +5 -6
- meta_prn/admin/offschedule_admin.py +12 -11
- meta_prn/admin/offschedule_dm_referral_admin.py +11 -10
- meta_prn/admin/offschedule_postnatal_admin.py +15 -7
- meta_prn/admin/offschedule_pregnancy_admin.py +18 -9
- meta_prn/admin/onschedule_admin.py +7 -8
- meta_prn/admin/onschedule_dm_referral_admin.py +11 -12
- meta_prn/admin/pregnancy_notification_admin.py +5 -6
- meta_prn/admin/protocol_incident_admin.py +1 -1
- meta_prn/admin/subject_transfer_admin.py +1 -1
- meta_prn/baker_recipes.py +10 -10
- meta_prn/choices.py +11 -7
- meta_prn/constants.py +1 -0
- meta_prn/form_validators/__init__.py +5 -0
- meta_prn/form_validators/end_of_study.py +65 -20
- meta_prn/form_validators/protocol_incident.py +1 -1
- meta_prn/forms/__init__.py +13 -0
- meta_prn/forms/dm_referral_form.py +2 -8
- meta_prn/forms/end_of_study_form.py +1 -1
- meta_prn/forms/loss_to_followup_form.py +1 -1
- meta_prn/forms/off_study_medication_form.py +2 -2
- meta_prn/forms/offschedule_form.py +25 -0
- meta_prn/forms/pregnancy_notification_form.py +15 -17
- meta_prn/list_data.py +3 -3
- meta_prn/migrations/0001_initial.py +25 -25
- meta_prn/migrations/0017_auto_20220307_1929.py +5 -5
- meta_prn/migrations/0018_auto_20220309_2106.py +9 -9
- meta_prn/migrations/0021_auto_20220316_2147.py +13 -13
- meta_prn/migrations/0022_auto_20220318_0133.py +9 -9
- meta_prn/migrations/0032_historicalegfrnotification_egfrnotification.py +5 -13
- meta_prn/migrations/0034_auto_20220630_1110.py +1 -1
- meta_prn/migrations/0035_auto_20220630_1140.py +1 -1
- meta_prn/migrations/0038_alter_endofstudy_delivery_date_and_more.py +5 -13
- meta_prn/migrations/0041_endofstudy_transfer_date_and_more.py +5 -13
- meta_prn/migrations/0057_historicalonscheduledmreferral_and_more.py +13 -38
- meta_prn/migrations/0060_alter_onschedule_managers_and_more.py +55 -0
- meta_prn/migrations/0061_auto_20250115_2025.py +56 -0
- meta_prn/migrations/0062_alter_endofstudy_offstudy_reason_and_more.py +72 -0
- meta_prn/migrations/0063_historicaloffstudymedication_singleton_field_and_more.py +37 -0
- meta_prn/migrations/0064_auto_20250602_2143.py +18 -0
- meta_prn/migrations/0065_alter_historicaloffstudymedication_subject_identifier_and_more.py +23 -0
- meta_prn/migrations/0066_alter_historicallosstofollowup_subject_identifier_and_more.py +23 -0
- meta_prn/migrations/0067_alter_offschedule_managers_and_more.py +2557 -0
- meta_prn/migrations/0068_alter_dmreferral_referral_note_and_more.py +235 -0
- meta_prn/migrations/0069_alter_historicaloffstudymedication_singleton_field_and_more.py +37 -0
- meta_prn/models/__init__.py +20 -0
- meta_prn/models/dm_referral.py +2 -2
- meta_prn/models/end_of_study.py +28 -23
- meta_prn/models/loss_to_followup.py +8 -10
- meta_prn/models/off_study_medication.py +7 -4
- meta_prn/models/offschedule.py +4 -4
- meta_prn/models/pregnancy_notification.py +3 -5
- meta_prn/models/protocol_incident.py +5 -2
- meta_prn/models/signals.py +16 -14
- meta_prn/models/subject_transfer.py +7 -0
- meta_prn/templates/meta_prn/eos/additional_instructions.html +3 -0
- meta_prn/templates/meta_prn/offschedule/additional_instructions.html +2 -0
- meta_rando/migrations/0001_initial.py +5 -5
- meta_rando/migrations/0006_alter_historicalrandomizationlist_allocated_user_and_more.py +130 -0
- meta_rando/migrations/0007_spfqlist.py +197 -0
- meta_rando/migrations/0008_delete_spfqlist.py +16 -0
- meta_rando/models/__init__.py +1 -0
- meta_rando/{models.py → models/randomization_list.py} +3 -3
- meta_rando/randomizers.py +2 -2
- meta_reports/__init__.py +2 -0
- meta_reports/admin/__init__.py +16 -0
- meta_reports/admin/dbviews/__init__.py +13 -0
- meta_reports/admin/dbviews/glucose_summary_admin.py +7 -7
- meta_reports/admin/dbviews/imp_substitutions_admin.py +14 -13
- meta_reports/admin/dbviews/missing_screening_ogtt_admin/__init__.py +5 -0
- meta_reports/admin/dbviews/missing_screening_ogtt_admin/note_model_admin.py +27 -3
- meta_reports/admin/dbviews/missing_screening_ogtt_admin/unmanaged_model_admin.py +7 -7
- meta_reports/admin/dbviews/on_study_missing_lab_values_admin/__init__.py +2 -0
- meta_reports/admin/dbviews/on_study_missing_lab_values_admin/unmanaged_model_admin.py +0 -3
- meta_reports/admin/dbviews/on_study_missing_values_admin/__init__.py +2 -0
- meta_reports/admin/dbviews/on_study_missing_values_admin/unmanaged_model_admin.py +0 -1
- meta_reports/admin/dbviews/patient_history_missing_baseline_cd4_admin.py +9 -9
- meta_reports/admin/dbviews/unattended_three_in_row2_admin.py +6 -6
- meta_reports/admin/dbviews/unattended_three_in_row_admin.py +5 -5
- meta_reports/admin/dbviews/unattended_two_in_row_admin.py +5 -5
- meta_reports/admin/endpoints_admin.py +1 -1
- meta_reports/admin/endpoints_all_admin.py +0 -1
- meta_reports/admin/last_imp_refill_admin.py +33 -36
- meta_reports/admin/list_filters.py +3 -3
- meta_reports/admin/modeladmin_mixins.py +10 -17
- meta_reports/death_report.py +2 -2
- meta_reports/forms/__init__.py +2 -0
- meta_reports/forms/missing_ogtt_note_form.py +3 -4
- meta_reports/management/commands/generate_endpoints.py +5 -4
- meta_reports/migrations/0035_historicalmissingogttnote_missingogttnote.py +5 -14
- meta_reports/migrations/0054_auto_20250422_2003.py +81 -0
- meta_reports/migrations/0055_alter_glucosesummary_table.py +17 -0
- meta_reports/migrations/0056_auto_20250422_2214.py +54 -0
- meta_reports/migrations/0057_auto_20250422_2224.py +54 -0
- meta_reports/migrations/0058_auto_20250422_2232.py +54 -0
- meta_reports/migrations/0059_alter_endpoints_created_and_more.py +161 -0
- meta_reports/migrations/0060_auto_20250926_0242.py +366 -0
- meta_reports/migrations/0061_auto_20251004_0043.py +21 -0
- meta_reports/migrations/0062_auto_20251004_0106.py +21 -0
- meta_reports/models/__init__.py +17 -0
- meta_reports/models/dbviews/__init__.py +14 -0
- meta_reports/models/dbviews/glucose_summary/__init__.py +2 -0
- meta_reports/models/dbviews/glucose_summary/unmanaged_model.py +15 -3
- meta_reports/models/dbviews/glucose_summary/view_definition.py +8 -5
- meta_reports/models/dbviews/imp_substitutions/__init__.py +2 -0
- meta_reports/models/dbviews/imp_substitutions/unmanaged_model.py +1 -2
- meta_reports/models/dbviews/imp_substitutions/view_definition.py +1 -1
- meta_reports/models/dbviews/missing_screening_ogtt/__init__.py +2 -0
- meta_reports/models/dbviews/missing_screening_ogtt/note_model.py +2 -2
- meta_reports/models/dbviews/missing_screening_ogtt/unmanaged_model.py +4 -3
- meta_reports/models/dbviews/on_study_missing_lab_values/__init__.py +2 -0
- meta_reports/models/dbviews/on_study_missing_lab_values/qa_cases.py +13 -11
- meta_reports/models/dbviews/on_study_missing_lab_values/unmanged_model.py +0 -1
- meta_reports/models/dbviews/on_study_missing_values/__init__.py +2 -0
- meta_reports/models/dbviews/on_study_missing_values/qa_cases.py +19 -1
- meta_reports/models/dbviews/on_study_missing_values/unmanged_model.py +0 -1
- meta_reports/models/dbviews/patient_history_missing_baseline_cd4/__init__.py +2 -0
- meta_reports/models/dbviews/patient_history_missing_baseline_cd4/unmanaged_model.py +0 -1
- meta_reports/models/dbviews/unattended_three_in_row/__init__.py +2 -0
- meta_reports/models/dbviews/unattended_three_in_row/unmanaged_model.py +0 -1
- meta_reports/models/dbviews/unattended_three_in_row2/__init__.py +2 -0
- meta_reports/models/dbviews/unattended_three_in_row2/unmanaged_model.py +0 -1
- meta_reports/models/dbviews/unattended_two_in_row/__init__.py +2 -0
- meta_reports/models/dbviews/unattended_two_in_row/unmanaged_model.py +0 -1
- meta_reports/models/endpoints.py +8 -4
- meta_reports/models/last_imp_refill.py +2 -3
- meta_reports/pdf_report.py +2 -2
- meta_reports/tasks.py +4 -3
- meta_reports/templates/meta_reports/columns/subject_identifier_column.html +1 -1
- meta_reports/templates/meta_reports/endpoints_all_change_list_note.html +1 -1
- meta_reports/templates/meta_reports/endpoints_change_list_note.html +1 -1
- meta_reports/templates/meta_reports/last_imp_refill/changelist_note.html +13 -0
- meta_screening/admin/__init__.py +8 -0
- meta_screening/admin/fieldsets.py +13 -15
- meta_screening/admin/list_filters.py +7 -5
- meta_screening/admin/screening_part_one_admin.py +1 -3
- meta_screening/admin/screening_part_three_admin.py +2 -3
- meta_screening/admin/screening_part_two_admin.py +7 -10
- meta_screening/admin/subject_refusal_admin.py +5 -3
- meta_screening/admin/subject_screening_admin.py +21 -10
- meta_screening/baker_recipes.py +18 -10
- meta_screening/calculators.py +1 -1
- meta_screening/choices.py +1 -1
- meta_screening/constants.py +1 -1
- meta_screening/eligibility/__init__.py +9 -0
- meta_screening/eligibility/eligibility.py +21 -14
- meta_screening/eligibility/eligibility_part_one.py +1 -1
- meta_screening/eligibility/eligibility_part_three/__init__.py +2 -0
- meta_screening/eligibility/eligibility_part_three/base_eligibility_part_three.py +68 -49
- meta_screening/eligibility/eligibility_part_three/eligibility_part_three_phase_three.py +14 -15
- meta_screening/eligibility/eligibility_part_two.py +1 -1
- meta_screening/form_validators/__init__.py +8 -0
- meta_screening/form_validators/screening_part_one.py +1 -1
- meta_screening/form_validators/screening_part_three.py +6 -2
- meta_screening/form_validators/screening_part_two.py +1 -1
- meta_screening/form_validators/subject_refusal.py +1 -1
- meta_screening/forms/__init__.py +20 -0
- meta_screening/forms/field_lists.py +16 -18
- meta_screening/forms/screening_part_one_form.py +2 -2
- meta_screening/forms/screening_part_three_form.py +5 -3
- meta_screening/forms/screening_part_two_form.py +1 -5
- meta_screening/forms/subject_refusal_form.py +0 -4
- meta_screening/forms/subject_screening_form.py +0 -4
- meta_screening/migrations/0001_initial.py +15 -15
- meta_screening/migrations/0010_auto_20191106_0828.py +5 -5
- meta_screening/migrations/0012_auto_20191107_0427.py +1 -1
- meta_screening/migrations/0068_alter_historicalscreeningpartone_acute_condition_and_more.py +1579 -0
- meta_screening/model_mixins/__init__.py +8 -0
- meta_screening/model_mixins/calculated_model_mixin.py +2 -2
- meta_screening/model_mixins/creatinine_fields_model_mixin.py +1 -1
- meta_screening/model_mixins/eligibility_model_mixin.py +6 -4
- meta_screening/model_mixins/part_one_fields_model_mixin.py +16 -19
- meta_screening/model_mixins/part_three_fields_model_mixin.py +6 -7
- meta_screening/model_mixins/part_two_fields_model_mixin.py +19 -17
- meta_screening/models/__init__.py +9 -0
- meta_screening/models/icp_referral.py +5 -5
- meta_screening/models/proxy_models.py +1 -1
- meta_screening/models/signals.py +10 -11
- meta_screening/models/subject_refusal.py +1 -1
- meta_screening/models/subject_screening.py +2 -4
- meta_subject/action_items.py +18 -14
- meta_subject/admin/__init__.py +42 -0
- meta_subject/admin/birth_outcome_admin.py +7 -9
- meta_subject/admin/blood_results/__init__.py +9 -0
- meta_subject/admin/blood_results/blood_results_fbc_admin.py +1 -1
- meta_subject/admin/blood_results/blood_results_hba1c_admin.py +1 -1
- meta_subject/admin/blood_results/blood_results_ins_admin.py +1 -1
- meta_subject/admin/blood_results/blood_results_lft_admin.py +1 -1
- meta_subject/admin/blood_results/blood_results_lipids_admin.py +1 -1
- meta_subject/admin/blood_results/blood_results_rft_admin.py +3 -5
- meta_subject/admin/complications_glycemia_admin.py +1 -1
- meta_subject/admin/delivery_admin.py +8 -11
- meta_subject/admin/diabetes/__init__.py +2 -0
- meta_subject/admin/diabetes/dm_endpoint_admin.py +2 -2
- meta_subject/admin/diabetes/dm_followup_admin.py +3 -2
- meta_subject/admin/egfr_drop_notification_admin.py +1 -1
- meta_subject/admin/fields.py +5 -5
- meta_subject/admin/fieldsets.py +5 -5
- meta_subject/admin/followup_examination_admin.py +11 -9
- meta_subject/admin/followup_vitals_admin.py +31 -6
- meta_subject/admin/glucose_admin.py +4 -8
- meta_subject/admin/glucose_fbg_admin.py +18 -11
- meta_subject/admin/health_economics/__init__.py +2 -0
- meta_subject/admin/health_economics/health_economics_simple_admin.py +1 -1
- meta_subject/admin/health_economics/health_economics_update_admin.py +1 -1
- meta_subject/admin/hepatitis_test_admin.py +1 -1
- meta_subject/admin/hiv_exit_review_admin.py +55 -0
- meta_subject/admin/list_filters.py +5 -5
- meta_subject/admin/mnsi_admin.py +7 -5
- meta_subject/admin/next_appointment_admin.py +19 -0
- meta_subject/admin/other_arv_regimens_admin.py +3 -3
- meta_subject/admin/patient_history_admin.py +4 -4
- meta_subject/admin/physical_exam_admin.py +1 -1
- meta_subject/admin/pregnancy_update_admin.py +1 -1
- meta_subject/admin/study_medication_admin.py +8 -15
- meta_subject/admin/subject_requisition_admin.py +2 -2
- meta_subject/admin/subject_visit_admin.py +1 -1
- meta_subject/admin/subject_visit_missed_admin.py +1 -1
- meta_subject/admin/urine_dipstick_test_admin.py +1 -1
- meta_subject/admin/urine_pregnancy_admin.py +1 -1
- meta_subject/baker_recipes.py +15 -15
- meta_subject/choices.py +4 -3
- meta_subject/form_validators/__init__.py +15 -0
- meta_subject/form_validators/delivery_form_validator.py +3 -3
- meta_subject/form_validators/dm_endpoint_form_validator.py +3 -1
- meta_subject/form_validators/dm_followup_form_validator.py +8 -7
- meta_subject/form_validators/egfr_drop_notification_form_validator.py +1 -1
- meta_subject/form_validators/followup_examination_form_validator.py +1 -1
- meta_subject/form_validators/glucose_fbg_form_validator.py +76 -0
- meta_subject/form_validators/glucose_form_validator.py +10 -67
- meta_subject/form_validators/hiv_exit_review_form_validator.py +18 -0
- meta_subject/form_validators/mixins.py +95 -0
- meta_subject/forms/__init__.py +44 -0
- meta_subject/forms/blood_results/__init__.py +9 -0
- meta_subject/forms/blood_results/blood_results_hba1c_form.py +1 -1
- meta_subject/forms/blood_results/blood_results_rft_form.py +60 -4
- meta_subject/forms/delivery_form.py +2 -0
- meta_subject/forms/diabetes/__init__.py +2 -0
- meta_subject/forms/diabetes/dm_followup_form.py +2 -2
- meta_subject/forms/followup_vitals_form.py +27 -1
- meta_subject/forms/glucose_fbg_form.py +1 -46
- meta_subject/forms/health_economics/__init__.py +2 -0
- meta_subject/forms/hepatitis_test_form.py +1 -1
- meta_subject/forms/hiv_exit_review_form.py +13 -0
- meta_subject/forms/mixins.py +1 -1
- meta_subject/forms/next_appointment_form.py +36 -0
- meta_subject/forms/other_arv_regimens_form.py +1 -1
- meta_subject/forms/patient_history_form.py +1 -1
- meta_subject/forms/physical_exam_form.py +1 -1
- meta_subject/forms/pregnancy_update_form.py +1 -1
- meta_subject/forms/slider_widget.py +1 -1
- meta_subject/forms/study_medication_form.py +18 -12
- meta_subject/forms/subject_requisition_form.py +1 -1
- meta_subject/forms/subject_visit_missed_form.py +1 -1
- meta_subject/forms/urine_dipstick_test_form.py +1 -1
- meta_subject/forms/urine_pregnancy_form.py +1 -1
- meta_subject/management/commands/create_missing_refills.py +3 -3
- meta_subject/management/commands/create_missing_rx.py +2 -2
- meta_subject/management/commands/missed.py +20 -23
- meta_subject/metadata_rules/__init__.py +2 -0
- meta_subject/metadata_rules/metadata_rules.py +14 -0
- meta_subject/metadata_rules/predicates.py +44 -25
- meta_subject/migrations/0001_initial.py +61 -61
- meta_subject/migrations/0002_auto_20191021_0353.py +5 -5
- meta_subject/migrations/0012_auto_20200118_2334.py +5 -5
- meta_subject/migrations/0014_auto_20200120_1622.py +5 -5
- meta_subject/migrations/0018_coronakap_historicalcoronakap.py +5 -5
- meta_subject/migrations/0033_auto_20200516_2356.py +5 -5
- meta_subject/migrations/0038_auto_20200520_0020.py +5 -5
- meta_subject/migrations/0040_auto_20200527_2155.py +1 -1
- meta_subject/migrations/0045_auto_20200530_1801.py +1 -1
- meta_subject/migrations/0051_auto_20200617_2117.py +5 -5
- meta_subject/migrations/0063_auto_20210715_0337.py +5 -5
- meta_subject/migrations/0066_auto_20210721_0335.py +9 -9
- meta_subject/migrations/0067_auto_20210726_0340.py +5 -5
- meta_subject/migrations/0068_auto_20210728_1809.py +5 -5
- meta_subject/migrations/0072_auto_20210805_1545.py +7 -7
- meta_subject/migrations/0073_auto_20210809_0055.py +5 -5
- meta_subject/migrations/0077_auto_20210809_2323.py +3 -3
- meta_subject/migrations/0082_auto_20210823_1612.py +3 -3
- meta_subject/migrations/0083_auto_20210823_1620.py +3 -3
- meta_subject/migrations/0088_auto_20210924_0027.py +5 -5
- meta_subject/migrations/0090_auto_20210924_0424.py +5 -5
- meta_subject/migrations/0093_auto_20211117_0352.py +5 -5
- meta_subject/migrations/0095_auto_20220128_1719.py +5 -5
- meta_subject/migrations/0098_auto_20220309_2106.py +5 -5
- meta_subject/migrations/0101_auto_20220316_2147.py +13 -13
- meta_subject/migrations/0107_auto_20220415_0043.py +1 -1
- meta_subject/migrations/0115_historicalegfrnotification_egfrnotification.py +5 -13
- meta_subject/migrations/0128_auto_20220720_0055.py +1 -1
- meta_subject/migrations/0131_auto_20220722_0411.py +1 -1
- meta_subject/migrations/0135_auto_20220722_2212.py +2 -1
- meta_subject/migrations/0164_dmreferralfollowup_historicaldmreferralfollowup.py +5 -5
- meta_subject/migrations/0172_remove_historicalbloodresultsglu_action_item_and_more.py +1 -2
- meta_subject/migrations/0177_alter_bloodresultslft_alp_value_and_more.py +1 -2
- meta_subject/migrations/0178_historicalhealtheconomicsupdate_and_more.py +5 -14
- meta_subject/migrations/0186_healtheconomicsupdate_singleton_field_and_more.py +1 -2
- meta_subject/migrations/0187_dmdiagnosis_historicaldmdiagnosis_dmdxresult_and_more.py +5 -14
- meta_subject/migrations/0188_historicaldmdxresult_dmdxresult.py +5 -14
- meta_subject/migrations/0199_auto_20240516_0247.py +1 -1
- meta_subject/migrations/0209_remove_historicaldmdxresult_dm_diagnosis_and_more.py +1 -2
- meta_subject/migrations/0212_auto_20240827_2222.py +1 -1
- meta_subject/migrations/0216_historicalnextappointment_nextappointment.py +553 -0
- meta_subject/migrations/0217_alter_historicalnextappointment_appt_datetime_and_more.py +42 -0
- meta_subject/migrations/0218_alter_historicalnextappointment_appt_date_and_more.py +53 -0
- meta_subject/migrations/0219_remove_historicalnextappointment_allow_create_interim_and_more.py +92 -0
- meta_subject/migrations/0220_historicalbloodresultsgludummy_bloodresultsgludummy.py +825 -0
- meta_subject/migrations/0221_auto_20250402_1913.py +42 -0
- meta_subject/migrations/0222_alter_historicalstudymedication_stock_codes_and_more.py +46 -0
- meta_subject/migrations/0223_bloodresultsfbc_errors_bloodresultsgludummy_errors_and_more.py +83 -0
- meta_subject/migrations/0224_bloodresultsfbc_abnormal_summary_and_more.py +153 -0
- meta_subject/migrations/0225_followupvitals_waist_circumference_and_more.py +46 -0
- meta_subject/migrations/0226_followupvitals_waist_circumference_comment_and_more.py +97 -0
- meta_subject/migrations/0227_alter_followupvitals_waist_circumference_comment_and_more.py +97 -0
- meta_subject/migrations/0228_bloodresultshba1c_hba1c_datetime_and_more.py +2518 -0
- meta_subject/migrations/0229_alter_glucosefbg_consent_model_and_more.py +1918 -0
- meta_subject/migrations/0230_alter_historicaldelivery_action_identifier_and_more.py +1733 -0
- meta_subject/migrations/0231_alter_historicalmedicationadherence_consent_model_and_more.py +2054 -0
- meta_subject/migrations/0232_alter_patienthistory_concomitant_conditions_and_more.py +1170 -0
- meta_subject/migrations/0233_historicalspfq_spfq.py +1066 -0
- meta_subject/migrations/0234_remove_spfq_site_remove_spfq_subject_visit_and_more.py +27 -0
- meta_subject/migrations/0235_glucosefbg_endpoint_today_and_more.py +606 -0
- meta_subject/migrations/0236_alter_historicalhivexitreview_other_current_arv_regimen_and_more.py +58 -0
- meta_subject/migrations/0237_historicalhivexitreview_singleton_field_and_more.py +68 -0
- meta_subject/migrations/0238_historicalhivexitreview_available_and_more.py +88 -0
- meta_subject/model_mixins/__init__.py +10 -0
- meta_subject/model_mixins/arv_history_model_mixin.py +3 -44
- meta_subject/model_mixins/arv_review_model_mixin.py +53 -0
- meta_subject/model_mixins/search_slug_model_mixin.py +1 -2
- meta_subject/model_mixins/vitals_fields_model_mixin.py +33 -0
- meta_subject/models/__init__.py +52 -0
- meta_subject/models/birth_outcomes.py +3 -3
- meta_subject/models/blood_results/__init__.py +11 -0
- meta_subject/models/blood_results/blood_results_glu.py +29 -0
- meta_subject/models/blood_results/blood_results_hba1c.py +0 -1
- meta_subject/models/blood_results/blood_results_ins.py +0 -1
- meta_subject/models/blood_results/blood_results_lft.py +0 -1
- meta_subject/models/delivery.py +4 -6
- meta_subject/models/diabetes/__init__.py +2 -0
- meta_subject/models/diabetes/dm_endpoint.py +5 -5
- meta_subject/models/diabetes/dm_followup.py +7 -8
- meta_subject/models/diet_and_lifestyle.py +2 -2
- meta_subject/models/followup_examination.py +12 -14
- meta_subject/models/glucose.py +5 -5
- meta_subject/models/glucose_fbg.py +17 -4
- meta_subject/models/health_economics/__init__.py +2 -0
- meta_subject/models/health_economics/health_economics.py +8 -8
- meta_subject/models/health_economics/health_economics_simple.py +2 -2
- meta_subject/models/health_economics/health_economics_update.py +3 -2
- meta_subject/models/hepatitis_test.py +2 -2
- meta_subject/models/hiv_exit_review.py +44 -0
- meta_subject/models/next_appointment.py +15 -0
- meta_subject/models/other_arv_regimens_detail.py +1 -1
- meta_subject/models/patient_history.py +6 -7
- meta_subject/models/physical_exam.py +2 -2
- meta_subject/models/pregnancy_update.py +1 -1
- meta_subject/models/signals.py +15 -13
- meta_subject/models/subject_visit.py +2 -2
- meta_subject/models/todo.txt +1 -1
- meta_subject/models/urine_dipstick_test.py +2 -2
- meta_subject/models/urine_pregnancy.py +1 -1
- meta_subject/static/meta_subject/slider.css +1 -1
- meta_subject/templates/meta_subject/endpoint_review_instructions.html +1 -1
- meta_subject/templates/meta_subject/widgets/slider.html +0 -1
- meta_visit_schedule/visit_schedules/__init__.py +2 -0
- meta_visit_schedule/visit_schedules/phase_three/__init__.py +2 -0
- meta_visit_schedule/visit_schedules/phase_three/crfs.py +34 -1
- meta_visit_schedule/visit_schedules/phase_three/schedule.py +4 -4
- meta_visit_schedule/visit_schedules/phase_three/schedule_dm_referral.py +1 -2
- meta_visit_schedule/visit_schedules/phase_three/schedule_pregnancy.py +2 -3
- meta_ae/tests/holidays.csv +0 -15
- meta_ae/tests/tests/test_actions.py +0 -127
- meta_ae/tests/urls.py +0 -10
- meta_analytics/dataframes/enrolled/__init__.py +0 -1
- meta_analytics/dataframes/enrolled/get_glucose_df.py +0 -122
- meta_analytics/tests/__init__.py +0 -0
- meta_analytics/tests/test_endpoints_by_date.py +0 -94
- meta_consent/tests/__init__.py +0 -0
- meta_consent/tests/holidays.csv +0 -15
- meta_consent/tests/tests/__init__.py +0 -0
- meta_consent/tests/tests/test_form_validators.py +0 -110
- meta_consent/tests/tests/test_subject_consent.py +0 -10
- meta_consent/tests/urls.py +0 -17
- meta_dashboard/templates/meta_dashboard/bootstrap3/subject/dashboard.html +0 -11
- meta_dashboard/tests/__init__.py +0 -0
- meta_dashboard/tests/admin.py +0 -22
- meta_dashboard/tests/holidays.csv +0 -15
- meta_dashboard/tests/tests/__init__.py +0 -0
- meta_dashboard/tests/urls.py +0 -55
- meta_edc/tests/__init__.py +0 -0
- meta_edc/tests/tests/__init__.py +0 -0
- meta_edc/tests/tests/test_endpoints.py +0 -554
- meta_edc-0.3.39.dist-info/AUTHORS +0 -0
- meta_edc-0.3.39.dist-info/METADATA +0 -766
- meta_edc-0.3.39.dist-info/WHEEL +0 -5
- meta_edc-0.3.39.dist-info/top_level.txt +0 -20
- meta_labs/tests/__init__.py +0 -0
- meta_labs/tests/test_labs.py +0 -27
- meta_labs/tests/test_reportables.py +0 -16
- meta_labs/tests/urls.py +0 -4
- meta_lists/tests/__init__.py +0 -0
- meta_lists/tests/test_lists.py +0 -8
- meta_pharmacy/admin/actions.py +0 -38
- meta_prn/tests/__init__.py +0 -0
- meta_prn/tests/tests/__init__.py +0 -0
- meta_prn/tests/tests/test_actions.py +0 -97
- meta_prn/tests/tests/test_dm_referral.py +0 -206
- meta_prn/tests/tests/test_manager_order.py +0 -14
- meta_prn/tests/tests/test_pregnancy_notification.py +0 -93
- meta_prn/tests/urls.py +0 -10
- meta_rando/tests/__init__.py +0 -0
- meta_rando/tests/tests/__init__.py +0 -0
- meta_rando/tests/tests/test_randomizers.py +0 -57
- meta_reports/tests/__init__.py +0 -0
- meta_reports/tests/test_reports.py +0 -35
- meta_reports/tests/test_sql_gen.py +0 -5
- meta_reports/tests/urls.py +0 -4
- meta_screening/offline_models.py +0 -3
- meta_screening/tests/__init__.py +0 -0
- meta_screening/tests/holidays.csv +0 -15
- meta_screening/tests/meta_test_case_mixin.py +0 -216
- meta_screening/tests/options.py +0 -127
- meta_screening/tests/tests/__init__.py +0 -0
- meta_screening/tests/tests/test_forms.py +0 -397
- meta_screening/tests/tests/test_screening_part_one.py +0 -108
- meta_screening/tests/tests/test_screening_part_three.py +0 -436
- meta_screening/tests/tests/test_screening_part_two.py +0 -84
- meta_sites/tests/__init__.py +0 -0
- meta_sites/tests/test_sites.py +0 -12
- meta_sites/tests/urls.py +0 -4
- meta_stats/__init__.py +0 -0
- meta_stats/incidence.py +0 -16
- meta_stats/models.py +0 -0
- meta_stats/tests/__init__.py +0 -0
- meta_stats/tests/tests/__init__.py +0 -0
- meta_stats/tests/tests/test_incidence.py +0 -10
- meta_subject/tests/__init__.py +0 -0
- meta_subject/tests/holidays.csv +0 -15
- meta_subject/tests/tests/__init__.py +0 -0
- meta_subject/tests/tests/test_egfr.py +0 -234
- meta_subject/tests/tests/test_fixes.py +0 -64
- meta_subject/tests/tests/test_followup.py +0 -52
- meta_subject/tests/tests/test_manager_order.py +0 -11
- meta_subject/tests/tests/test_medication_adherence.py +0 -75
- meta_subject/tests/tests/test_metadata_rules.py +0 -135
- meta_subject/tests/tests/test_mnsi.py +0 -317
- meta_subject/tests/tests/test_patient_history_form.py +0 -74
- meta_subject/tests/tests/test_physical_exam.py +0 -84
- meta_subject/tests/tests/test_sf12.py +0 -173
- meta_subject/tests/tests/test_study_medication.py +0 -230
- meta_subject/tests/urls.py +0 -24
- meta_visit_schedule/tests/__init__.py +0 -0
- meta_visit_schedule/tests/tests/__init__.py +0 -0
- meta_visit_schedule/tests/tests/test_schedule.py +0 -181
- meta_visit_schedule/tests/urls.py +0 -4
- tests/__init__.py +0 -0
- tests/etc/randomization_list.csv +0 -241
- tests/etc/randomization_list_phase_three.csv +0 -241
- tests/etc/user-aes-local.key +0 -0
- tests/etc/user-aes-restricted.key +0 -1
- tests/etc/user-rsa-local-private.pem +0 -27
- tests/etc/user-rsa-local-public.pem +0 -9
- tests/etc/user-rsa-restricted-private.pem +0 -27
- tests/etc/user-rsa-restricted-public.pem +0 -9
- tests/etc/user-salt-local.key +0 -0
- tests/etc/user-salt-restricted.key +0 -0
- tests/holidays.csv +0 -15
- tests/test_settings.py +0 -186
- /meta_ae/templates/meta_ae/{bootstrap3/ae_initial_description.html → aeinitial_description.html} +0 -0
- /meta_dashboard/templates/meta_dashboard/{bootstrap3/buttons → buttons}/add_consent_button.html +0 -0
- /meta_dashboard/templates/meta_dashboard/{bootstrap3/buttons → buttons}/dashboard_button.html +0 -0
- /meta_dashboard/templates/meta_dashboard/{bootstrap3/buttons → buttons}/refusal_button.html +0 -0
- /meta_dashboard/templates/meta_dashboard/{bootstrap3/screening → screening}/listboard.html +0 -0
- /meta_dashboard/templates/meta_dashboard/{bootstrap3/subject → subject}/listboard.html +0 -0
- {meta_edc-0.3.39.dist-info → meta_edc-1.4.0.dist-info/licenses}/LICENSE +0 -0
- /meta_ae/tests/__init__.py → /meta_subject/management/__init__py.py +0 -0
- /meta_ae/tests/tests/__init__.py → /meta_subject/management/commands/__init__py.py +0 -0
|
@@ -1,241 +0,0 @@
|
|
|
1
|
-
sid,assignment,site_name,gender
|
|
2
|
-
1001,active,hindu_mandal,F
|
|
3
|
-
1002,placebo,hindu_mandal,F
|
|
4
|
-
1003,active,hindu_mandal,M
|
|
5
|
-
1004,placebo,hindu_mandal,M
|
|
6
|
-
1005,placebo,hindu_mandal,M
|
|
7
|
-
1006,active,hindu_mandal,M
|
|
8
|
-
1007,placebo,hindu_mandal,M
|
|
9
|
-
1008,active,hindu_mandal,F
|
|
10
|
-
1009,placebo,hindu_mandal,F
|
|
11
|
-
1010,active,hindu_mandal,M
|
|
12
|
-
1011,placebo, hindu_mandal,F
|
|
13
|
-
1012,active,hindu_mandal,M
|
|
14
|
-
1013,active,hindu_mandal,F
|
|
15
|
-
1014,placebo,hindu_mandal,M
|
|
16
|
-
1015,placebo,hindu_mandal,M
|
|
17
|
-
1016,active,hindu_mandal,M
|
|
18
|
-
1017,placebo,hindu_mandal,F
|
|
19
|
-
1018,active,hindu_mandal,M
|
|
20
|
-
1019,active,hindu_mandal,F
|
|
21
|
-
1020,placebo,hindu_mandal,F
|
|
22
|
-
1021,active,hindu_mandal,F
|
|
23
|
-
1022,placebo,hindu_mandal,F
|
|
24
|
-
1023,active,hindu_mandal,M
|
|
25
|
-
1024,placebo,hindu_mandal,M
|
|
26
|
-
1025,placebo,hindu_mandal,F
|
|
27
|
-
1026,active,hindu_mandal,F
|
|
28
|
-
1027,placebo,hindu_mandal,F
|
|
29
|
-
1028,active,hindu_mandal,F
|
|
30
|
-
1029,placebo,hindu_mandal,M
|
|
31
|
-
1030,active,hindu_mandal,F
|
|
32
|
-
1031,placebo,hindu_mandal,M
|
|
33
|
-
1032,active,hindu_mandal,M
|
|
34
|
-
1033,active,hindu_mandal,F
|
|
35
|
-
1034,placebo,hindu_mandal,M
|
|
36
|
-
1035,placebo,hindu_mandal,F
|
|
37
|
-
1036,active,hindu_mandal,F
|
|
38
|
-
1037,placebo,hindu_mandal,F
|
|
39
|
-
1038,active,hindu_mandal,M
|
|
40
|
-
1039,active,hindu_mandal,M
|
|
41
|
-
1040,placebo,hindu_mandal,F
|
|
42
|
-
1041,active,hindu_mandal,M
|
|
43
|
-
1042,placebo,hindu_mandal,M
|
|
44
|
-
1043,active,hindu_mandal,M
|
|
45
|
-
1044,placebo,hindu_mandal,M
|
|
46
|
-
1045,placebo,hindu_mandal,F
|
|
47
|
-
1046,active,hindu_mandal,M
|
|
48
|
-
1047,placebo,hindu_mandal,F
|
|
49
|
-
1048,active,hindu_mandal,F
|
|
50
|
-
1049,placebo,hindu_mandal ,F
|
|
51
|
-
1050,active,hindu_mandal,M
|
|
52
|
-
1051,placebo, hindu_mandal,F
|
|
53
|
-
1052,active,hindu_mandal,M
|
|
54
|
-
1053,active,hindu_mandal,F
|
|
55
|
-
1054,placebo,hindu_mandal,F
|
|
56
|
-
1055,placebo,hindu_mandal,F
|
|
57
|
-
1056,active,hindu_mandal,F
|
|
58
|
-
1057,placebo,hindu_mandal,F
|
|
59
|
-
1058,active,hindu_mandal,M
|
|
60
|
-
1059,active,hindu_mandal,F
|
|
61
|
-
1060,placebo,hindu_mandal,M
|
|
62
|
-
1061,active,hindu_mandal,F
|
|
63
|
-
1062,placebo,hindu_mandal,M
|
|
64
|
-
1063,active,hindu_mandal,M
|
|
65
|
-
1064,placebo,hindu_mandal,F
|
|
66
|
-
1065,placebo,hindu_mandal,M
|
|
67
|
-
1066,active,hindu_mandal,F
|
|
68
|
-
1067,placebo,hindu_mandal,M
|
|
69
|
-
1068,active,hindu_mandal,F
|
|
70
|
-
1069,placebo,hindu_mandal,M
|
|
71
|
-
1070,active,hindu_mandal,F
|
|
72
|
-
1071,placebo,hindu_mandal,F
|
|
73
|
-
1072,active,hindu_mandal,F
|
|
74
|
-
1073,active,hindu_mandal,F
|
|
75
|
-
1074,placebo,hindu_mandal,F
|
|
76
|
-
1075,placebo,hindu_mandal,M
|
|
77
|
-
1076,active,hindu_mandal,F
|
|
78
|
-
1077,placebo,hindu_mandal,M
|
|
79
|
-
1078,active,hindu_mandal,F
|
|
80
|
-
1079,active,hindu_mandal,F
|
|
81
|
-
1080,placebo,hindu_mandal,M
|
|
82
|
-
1081,active,hindu_mandal,F
|
|
83
|
-
1082,placebo,hindu_mandal,F
|
|
84
|
-
1083,active,hindu_mandal,M
|
|
85
|
-
1084,placebo,hindu_mandal,M
|
|
86
|
-
1085,placebo,hindu_mandal,F
|
|
87
|
-
1086,active,hindu_mandal,M
|
|
88
|
-
1087,placebo,hindu_mandal,M
|
|
89
|
-
1088,active,hindu_mandal,F
|
|
90
|
-
1089,placebo,hindu_mandal,F
|
|
91
|
-
1090,active,hindu_mandal,F
|
|
92
|
-
1091,placebo,hindu_mandal,M
|
|
93
|
-
1092,active,hindu_mandal,M
|
|
94
|
-
1093,active,hindu_mandal,M
|
|
95
|
-
1094,placebo,hindu_mandal,M
|
|
96
|
-
1095,placebo,hindu_mandal,M
|
|
97
|
-
1096,active,hindu_mandal,M
|
|
98
|
-
1097,placebo,hindu_mandal,F
|
|
99
|
-
1098,active,hindu_mandal,F
|
|
100
|
-
1099,active,hindu_mandal,M
|
|
101
|
-
1100,placebo,hindu_mandal,F
|
|
102
|
-
1101,active,hindu_mandal,M
|
|
103
|
-
1102,placebo,hindu_mandal,F
|
|
104
|
-
1103,active,hindu_mandal,F
|
|
105
|
-
1104,placebo,hindu_mandal,F
|
|
106
|
-
1105,placebo,hindu_mandal,M
|
|
107
|
-
1106,active,hindu_mandal,F
|
|
108
|
-
1107,placebo,hindu_mandal,M
|
|
109
|
-
1108,active,hindu_mandal,M
|
|
110
|
-
1109,placebo,hindu_mandal,F
|
|
111
|
-
1110,active,hindu_mandal,M
|
|
112
|
-
1111,placebo,hindu_mandal,M
|
|
113
|
-
1112,active,hindu_mandal,F
|
|
114
|
-
1113,active,hindu_mandal,F
|
|
115
|
-
1114,placebo,hindu_mandal,M
|
|
116
|
-
1115,placebo,hindu_mandal,F
|
|
117
|
-
1116,active,hindu_mandal,M
|
|
118
|
-
1117,placebo,hindu_mandal,M
|
|
119
|
-
1118,active,hindu_mandal,F
|
|
120
|
-
1119,active,hindu_mandal,M
|
|
121
|
-
1120,placebo,hindu_mandal,M
|
|
122
|
-
1121,active,amana,M
|
|
123
|
-
1122,placebo,amana,F
|
|
124
|
-
1123,active,amana,F
|
|
125
|
-
1124,placebo,amana,F
|
|
126
|
-
1125,placebo,amana,M
|
|
127
|
-
1126,active,amana,F
|
|
128
|
-
1127,placebo,amana,F
|
|
129
|
-
1128,active,amana,F
|
|
130
|
-
1129,placebo,amana,F
|
|
131
|
-
1130,active,amana,M
|
|
132
|
-
1131,placebo,amana,M
|
|
133
|
-
1132,active,amana,F
|
|
134
|
-
1133,active,amana,F
|
|
135
|
-
1134,placebo,amana,M
|
|
136
|
-
1135,placebo,amana,M
|
|
137
|
-
1136,active,amana,M
|
|
138
|
-
1137,placebo,amana,F
|
|
139
|
-
1138,active,amana,F
|
|
140
|
-
1139,active,amana,M
|
|
141
|
-
1140,placebo,amana,M
|
|
142
|
-
1141,active,amana,F
|
|
143
|
-
1142,placebo,amana,F
|
|
144
|
-
1143,active,amana,F
|
|
145
|
-
1144,placebo,amana,F
|
|
146
|
-
1145,placebo,amana,F
|
|
147
|
-
1146,active,amana,F
|
|
148
|
-
1147,placebo,amana,F
|
|
149
|
-
1148,active,amana,M
|
|
150
|
-
1149,placebo,amana,F
|
|
151
|
-
1150,active,amana,M
|
|
152
|
-
1151,placebo,amana,M
|
|
153
|
-
1152,active,amana,F
|
|
154
|
-
1153,active,amana,F
|
|
155
|
-
1154,placebo,amana,F
|
|
156
|
-
1155,placebo,amana,F
|
|
157
|
-
1156,active,amana,F
|
|
158
|
-
1157,placebo,amana,M
|
|
159
|
-
1158,active,amana,M
|
|
160
|
-
1159,active,amana,F
|
|
161
|
-
1160,placebo,amana,F
|
|
162
|
-
1161,active,amana,F
|
|
163
|
-
1162,placebo,amana,F
|
|
164
|
-
1163,active,amana,F
|
|
165
|
-
1164,placebo,amana,M
|
|
166
|
-
1165,placebo,amana,M
|
|
167
|
-
1166,active,amana,F
|
|
168
|
-
1167,placebo,amana,M
|
|
169
|
-
1168,active,amana,M
|
|
170
|
-
1169,placebo,amana,M
|
|
171
|
-
1170,active,amana,F
|
|
172
|
-
1171,placebo,amana,M
|
|
173
|
-
1172,active,amana,M
|
|
174
|
-
1173,active,amana,M
|
|
175
|
-
1174,placebo,amana,M
|
|
176
|
-
1175,placebo,amana,F
|
|
177
|
-
1176,active,amana,M
|
|
178
|
-
1177,placebo,amana,F
|
|
179
|
-
1178,active,amana,M
|
|
180
|
-
1179,active,amana,F
|
|
181
|
-
1180,placebo,amana,M
|
|
182
|
-
1181,active,amana,F
|
|
183
|
-
1182,placebo,amana,M
|
|
184
|
-
1183,active,amana,F
|
|
185
|
-
1184,placebo,amana,M
|
|
186
|
-
1185,placebo,amana,F
|
|
187
|
-
1186,active,amana,F
|
|
188
|
-
1187,placebo,amana,F
|
|
189
|
-
1188,active,amana,F
|
|
190
|
-
1189,placebo,amana,M
|
|
191
|
-
1190,active,amana,M
|
|
192
|
-
1191,placebo,amana,F
|
|
193
|
-
1192,active,amana,M
|
|
194
|
-
1193,active,amana,M
|
|
195
|
-
1194,placebo,amana,M
|
|
196
|
-
1195,placebo,amana,F
|
|
197
|
-
1196,active,amana,F
|
|
198
|
-
1197,placebo,amana,M
|
|
199
|
-
1198,active,amana,M
|
|
200
|
-
1199,active,amana,M
|
|
201
|
-
1200,placebo,amana,M
|
|
202
|
-
1201,active,amana,F
|
|
203
|
-
1202,placebo,amana,M
|
|
204
|
-
1203,active,amana,M
|
|
205
|
-
1204,placebo,amana,F
|
|
206
|
-
1205,placebo,amana,F
|
|
207
|
-
1206,active,amana,M
|
|
208
|
-
1207,placebo,amana,F
|
|
209
|
-
1208,active,amana,M
|
|
210
|
-
1209,placebo,amana,M
|
|
211
|
-
1210,active,amana,F
|
|
212
|
-
1211,placebo,amana,F
|
|
213
|
-
1212,active,amana,M
|
|
214
|
-
1213,active,amana,M
|
|
215
|
-
1214,placebo,amana,M
|
|
216
|
-
1215,placebo,amana,F
|
|
217
|
-
1216,active,amana,M
|
|
218
|
-
1217,placebo,amana,M
|
|
219
|
-
1218,active,amana,M
|
|
220
|
-
1219,active,amana,F
|
|
221
|
-
1220,placebo,amana,F
|
|
222
|
-
1221,active,amana,M
|
|
223
|
-
1222,placebo,amana,F
|
|
224
|
-
1223,active,amana,M
|
|
225
|
-
1224,placebo,amana,M
|
|
226
|
-
1225,placebo,amana,F
|
|
227
|
-
1226,active,amana,M
|
|
228
|
-
1227,placebo,amana,M
|
|
229
|
-
1228,active,amana,F
|
|
230
|
-
1229,placebo,amana,M
|
|
231
|
-
1230,active,amana,F
|
|
232
|
-
1231,placebo,amana,F
|
|
233
|
-
1232,active,amana,F
|
|
234
|
-
1233,active,amana,F
|
|
235
|
-
1234,placebo,amana,M
|
|
236
|
-
1235,placebo,amana,F
|
|
237
|
-
1236,active,amana,F
|
|
238
|
-
1237,placebo,amana,F
|
|
239
|
-
1238,active,amana,M
|
|
240
|
-
1239,active,amana,F
|
|
241
|
-
1240,placebo,amana,M
|
tests/etc/user-aes-local.key
DELETED
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
̏�K�����N1Ѷk����-<NSPz���T[�xS��!2/�ꡈʛ�B��a[&�}��ʹ���ᙛq��Y��"�!�1�xz���u�$�g;G��R0^rÞQe������d��>jY���-�Q��n{g��#�qW�d�rR�W�/�am���5��v�ΐ��w�O.Ft��Я%��e���
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
-----BEGIN RSA PRIVATE KEY-----
|
|
2
|
-
MIIEowIBAAKCAQEAq688A0iosuC3BB7LEnecxMyXKU3y9DKxAKecZcQhtGDefScb
|
|
3
|
-
OfPxuG8gk+H4WrIC2R0H4hWlSDj4Bn5gKlGAUo/xK2Diy+Dexq246ChLaQJBINPa
|
|
4
|
-
+F2ErbDX/v+bW5DaTod3syqeDq5NfPV3zEgzvejubxNOvSFxgQc10yCdGyzGN21n
|
|
5
|
-
LUG54Tl9HDVBoS0VsPmnvU/wTkurOr7pJhyX5t9AtIyZu+A9k/W0xsHxVotqmwv0
|
|
6
|
-
JYkU6z1hTzh3HhafFJbcmpS6Vf1/PgOwGYm27DsH4QxvLS2f214SWTH20JVoXFEo
|
|
7
|
-
d9EhaGZI0K+O53HqFDbhcnlGcCDnDbbGOu9y1QIDAQABAoIBAAUHnTp7ZnXXH4V/
|
|
8
|
-
YXOpDW62j7cmEXgWBBmAz5QrqtEeBWalPqbz/qDooIu0kxIVJQA3WYPGHpF/GcUW
|
|
9
|
-
7rpOqPPCQ86BiCNw8xXfAQvMImlxJ3dOvZuJIdn01F8kHekQ1VR3o4ocNYU4lgyT
|
|
10
|
-
JG9XrixiJpoadrQTxr+A9pK44eFp4hwOtTDJmxGbz7zsaABe/r4H/P1HY0IDeQ9V
|
|
11
|
-
GvPMVwX1Lgz/gdiwJVeeZkk8+L7rHqyh8pYwR6DCK+Otj9Zw4xrnQx8Ln6cMW4vw
|
|
12
|
-
NSjOiGnoKTCwN2+rYdMimFr3Nh4l4BYnNEhvzONxj6VaH3ySKfanaJu5D35Q2FLN
|
|
13
|
-
hPQYqgECgYEA0YFzLaQvHTAdiE9jbzNfwHryXl+bFJ7kx40pYl5a+N8HUNP5asDb
|
|
14
|
-
aoc8ExarxMEqK8hVQkoyb5Q2gyJjLj6K9kZT8SNqL1QQAsN7CM5Ekobq3EqmotGI
|
|
15
|
-
GXwHHa3JSaM6shBERCHIWANd44jjAYjtBtktBqF2SflATFAZCQMMR/sCgYEA0ckR
|
|
16
|
-
hmcZkIeok6Kqw+zehIp24kOF2m6BJW/2SdweC4Y3Zw2zVmvR4xTCcbxzxrtDsx9u
|
|
17
|
-
Q/jSq5n8pe200N9y64AUP/UzP/wPRgoIgdNPpWdesM6+UKPN2+dIn6lVVP70jCjx
|
|
18
|
-
5oRsV+U9USihPYsZWYWFr7t0sNBupw3nXyLfJ28CgYA00elDCZDjT/0yH6nXIGG0
|
|
19
|
-
uoqepoYH1eOiOAHGDjnrYveKNlc8xfDL09qeiWm3Cmhib3inZOOAZCK2PxY4U4Zf
|
|
20
|
-
fu2s7xvXYN9Egxpi5vY85w0RizSl+iPRIQb+QZFtIl0rBZTghI/pOLgUJK/u9CGm
|
|
21
|
-
R1zlvhF/pvrCArO9JOqUvwKBgQCkYdJ6p2TvzGz6qlb2yS+fWcRIDbLf8wD9bdrm
|
|
22
|
-
CzX7v8K/3ItvJ3NCZazrZEiwK2KkA/fqCRpC3pmLB1VM6hppkGXNq/vpoj/xmMEL
|
|
23
|
-
waHCMNqQ3p9gHsqbCoLsoMo9nL3Q6fCKua8PvJAsfRLDX7CQZkDX76JDPj/GZO2s
|
|
24
|
-
rW2AvwKBgFUDW5qVzFTFeKr2Vhi8OxgQMSjHfXBBv8pBl7oeNsykTOZyYb4+7D7W
|
|
25
|
-
fco/fmPTNrzpUwI3NQGhR7c4IPDYxmGhw9LRRYhFAsCr3UDiamVP7sve7MAS3sfa
|
|
26
|
-
DB6nc4Q31G4RSNJiW4itxvybmN8z36o3vY+1LmwV/sMy5A0ojeMB
|
|
27
|
-
-----END RSA PRIVATE KEY-----
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
-----BEGIN PUBLIC KEY-----
|
|
2
|
-
MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAq688A0iosuC3BB7LEnec
|
|
3
|
-
xMyXKU3y9DKxAKecZcQhtGDefScbOfPxuG8gk+H4WrIC2R0H4hWlSDj4Bn5gKlGA
|
|
4
|
-
Uo/xK2Diy+Dexq246ChLaQJBINPa+F2ErbDX/v+bW5DaTod3syqeDq5NfPV3zEgz
|
|
5
|
-
vejubxNOvSFxgQc10yCdGyzGN21nLUG54Tl9HDVBoS0VsPmnvU/wTkurOr7pJhyX
|
|
6
|
-
5t9AtIyZu+A9k/W0xsHxVotqmwv0JYkU6z1hTzh3HhafFJbcmpS6Vf1/PgOwGYm2
|
|
7
|
-
7DsH4QxvLS2f214SWTH20JVoXFEod9EhaGZI0K+O53HqFDbhcnlGcCDnDbbGOu9y
|
|
8
|
-
1QIDAQAB
|
|
9
|
-
-----END PUBLIC KEY-----
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
-----BEGIN RSA PRIVATE KEY-----
|
|
2
|
-
MIIEoQIBAAKCAQEAmX0tPp+sLGWIaTPf9vXVur5c5K/uFxKgpPyjj/iU63rKo1g3
|
|
3
|
-
7O9HQVRk8bEgudUmF4msh/kP22/8Mb5k5JqWmgsZC6jPTOO7xUPwKxmN1gfN6rGL
|
|
4
|
-
eUVb+0AjCOtvsh2UXFCoEtYp5orREKdAXRHYlxNKy5iBAn/X/BtyXxt6oTj6C9M8
|
|
5
|
-
ewx/QArpZHm4bGW1qlPY/UqIj5dcCE07vRlU+G5ZB191X6gvUa2bCwvhLTpQob7n
|
|
6
|
-
leTmxQEw9o2HQiJKwuddmV/gAGDrYmueogmDfPYfDrPKq30dEa4wzGWQpGwrQC4q
|
|
7
|
-
eGixLWPmkvpmX34JEeiNcsdrMCtKEnUP/BtYywIDAQABAoH/HEPMWk4xr7InbKXX
|
|
8
|
-
vRBjuSR5raNKfhnLe3HmGp0Z8/oWe2vDcwLmZWqS4xO7PDRNYb8dKxGN2f+guqzn
|
|
9
|
-
VTG00zuBGBJHPwYesn4Zcvr4kUzenqKlntQCZWbX6DpOV1n2incrV7phs8mTSKJf
|
|
10
|
-
gQ01+gncl6F910EhYHA/xB9LUUBRb3/pe6VEcJS47WDQe3i0KTj1cQNAFMIbdK52
|
|
11
|
-
hdtEWp2vhx/nHS2ETmY9+6hQ+E6ntec5Zr51qaaxCznhI0INLzLbzAJ7JDeMPZqt
|
|
12
|
-
rhIG5Q0IysiAb87RrO9yBStFj6a3y/z9DUc10EYx0j2eQlW7VDLhpgjaqVQjly4a
|
|
13
|
-
rW5hAoGBAL3qaPYlJOQmcnSkIgJHpmUnDW9JzaEqsNshxKnXY++sW1rrKGVuRb/f
|
|
14
|
-
xXOFERlqLjx1WhS8kP4ncvjYdspgM+2+cc4J2mP1D7zviiCNVFQTSzSRIy5FMLfg
|
|
15
|
-
p56+P2hW04uoYZRLX9LRwvdQaIOZnM6z488Yj41LQPEFQVEk2LRzAoGBAM7l5UjB
|
|
16
|
-
z1yTcAMO7IImTESLbuCqVXZmZ87dmIaz4G12mcJfL0soBpLUG3rHsDvSR4VWWxfJ
|
|
17
|
-
/DowWRhqj2WS1UmMaOpZKG+WRCEaZQjzKZbHHI/NrtJIsKFnHGkuf1X8j1mrPK+O
|
|
18
|
-
4jWFN2Ma+DoL8+VO4XfP0EnS2yP2hhTym4xJAoGAdwjWsvkDD3E9qfg6TL2GAL6i
|
|
19
|
-
gA99MDgm06JttpqHS/D27ZyZHEIqu6HRC5/q4MgZpNFVHcw3AOXO/UQH6L61rZ0B
|
|
20
|
-
jcfFN4OhUqW9KLwMkAnryE30BAtgBtBrn2bVLVvGijGGv8EilWveTM78QwfkLfa4
|
|
21
|
-
odReHYx+btMBZo+2uBsCgYBPt25vaRVfYwNeekqQHvd11Y9kCt0g4HYQ03qoM/g9
|
|
22
|
-
1NuLc6dCOurFeeoYlYYGlo+uBUbV1KJVPTmm2a/kf/2j9/CYkr+stuYLJyNUnnQg
|
|
23
|
-
vxj3I1W/efhsR9E/iYXQeJ42+25HajMoUeq0SbjojKBtcsYWpsBnIVID+kFRIuTh
|
|
24
|
-
2QKBgQCoO4ZD0iMCeBNrIzE/adWVSXulR3fTDLj0cSkhGkkBJmJ/R7gzm1IXjjYQ
|
|
25
|
-
oUqRczOdpBGxIsmrcoOGnFRKDbu5xXH7GIuogWWQbrmXwq9TTWraztiYaZF3HpmB
|
|
26
|
-
oDxSqFZF00vDDq1+z1SiVR6jyvedZ+F/gSVpymFFqw0JkPSurw==
|
|
27
|
-
-----END RSA PRIVATE KEY-----
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
-----BEGIN PUBLIC KEY-----
|
|
2
|
-
MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmX0tPp+sLGWIaTPf9vXV
|
|
3
|
-
ur5c5K/uFxKgpPyjj/iU63rKo1g37O9HQVRk8bEgudUmF4msh/kP22/8Mb5k5JqW
|
|
4
|
-
mgsZC6jPTOO7xUPwKxmN1gfN6rGLeUVb+0AjCOtvsh2UXFCoEtYp5orREKdAXRHY
|
|
5
|
-
lxNKy5iBAn/X/BtyXxt6oTj6C9M8ewx/QArpZHm4bGW1qlPY/UqIj5dcCE07vRlU
|
|
6
|
-
+G5ZB191X6gvUa2bCwvhLTpQob7nleTmxQEw9o2HQiJKwuddmV/gAGDrYmueogmD
|
|
7
|
-
fPYfDrPKq30dEa4wzGWQpGwrQC4qeGixLWPmkvpmX34JEeiNcsdrMCtKEnUP/BtY
|
|
8
|
-
ywIDAQAB
|
|
9
|
-
-----END PUBLIC KEY-----
|
tests/etc/user-salt-local.key
DELETED
|
Binary file
|
|
Binary file
|
tests/holidays.csv
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
2019-01-01,New Year's Day,tanzania
|
|
2
|
-
2019-01-12,Zanzibar Revolution Day,tanzania
|
|
3
|
-
2019-04-07,The Sheikh Abeid Amani Karume Day,tanzania
|
|
4
|
-
2019-04-17,Easter Monday,tanzania
|
|
5
|
-
2019-04-26,Union Day,tanzania
|
|
6
|
-
2019-05-01,Labour Day,tanzania
|
|
7
|
-
2019-06-26,Eid al-Fitr,tanzania
|
|
8
|
-
2019-07-07,Saba Saba Day,tanzania
|
|
9
|
-
2019-07-14,Good Friday,tanzania
|
|
10
|
-
2019-08-08,Nane Nane Day,tanzania
|
|
11
|
-
2019-10-14,Nyerere Day,tanzania
|
|
12
|
-
2019-12-01,Mawlid Day,tanzania
|
|
13
|
-
2019-12-09,Independence Day,tanzania
|
|
14
|
-
2019-12-25,Christmas Day,tanzania
|
|
15
|
-
2019-12-26,Boxing Day,tanzania
|
tests/test_settings.py
DELETED
|
@@ -1,186 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env python
|
|
2
|
-
import sys
|
|
3
|
-
from datetime import datetime
|
|
4
|
-
from os.path import join
|
|
5
|
-
from pathlib import Path
|
|
6
|
-
from zoneinfo import ZoneInfo
|
|
7
|
-
|
|
8
|
-
from django.conf import locale
|
|
9
|
-
from edc_constants.internationalization import EXTRA_LANG_INFO
|
|
10
|
-
from edc_test_settings.default_test_settings import DefaultTestSettings
|
|
11
|
-
from multisite import SiteID
|
|
12
|
-
|
|
13
|
-
from meta_edc.meta_version import PHASE_THREE
|
|
14
|
-
|
|
15
|
-
LANG_INFO = dict(locale.LANG_INFO, **EXTRA_LANG_INFO)
|
|
16
|
-
locale.LANG_INFO = LANG_INFO
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
def get_languages():
|
|
20
|
-
return [(code, LANG_INFO[code]["name"]) for code in ["sw", "en-gb", "en", "mas"]]
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
app_name = "meta_edc"
|
|
24
|
-
base_dir = Path(__file__).parent.parent
|
|
25
|
-
project_settings = DefaultTestSettings(
|
|
26
|
-
calling_file=__file__,
|
|
27
|
-
META_PHASE=PHASE_THREE,
|
|
28
|
-
BASE_DIR=base_dir,
|
|
29
|
-
APP_NAME=app_name,
|
|
30
|
-
ETC_DIR=base_dir / "tests" / "etc",
|
|
31
|
-
DJANGO_CRYPTO_FIELDS_KEY_PATH=base_dir / "tests" / "etc",
|
|
32
|
-
GIT_DIR=base_dir,
|
|
33
|
-
HOLIDAY_FILE=base_dir / "tests" / "holidays.csv",
|
|
34
|
-
EDC_RANDOMIZATION_LIST_PATH=base_dir / "tests" / "etc",
|
|
35
|
-
SITE_ID=SiteID(default=10),
|
|
36
|
-
EDC_SITES_DOMAIN_SUFFIX="meta3.clinicedc.org",
|
|
37
|
-
EDC_EGFR_DROP_NOTIFICATION_MODEL="meta_subject.egfrdropnotification",
|
|
38
|
-
EDC_RANDOMIZATION_REGISTER_DEFAULT_RANDOMIZER=False,
|
|
39
|
-
EDC_MNSI_ABNORMAL_FOOT_APPEARANCE_OBSERVATIONS_MODEL=(
|
|
40
|
-
"meta_lists.abnormalfootappearanceobservations"
|
|
41
|
-
),
|
|
42
|
-
EDC_QOL_EQ5D3L_MODEL="meta_subject.eq5d3l",
|
|
43
|
-
ROOT_URLCONF="meta_edc.urls",
|
|
44
|
-
EDC_AUTH_CODENAMES_WARN_ONLY=True,
|
|
45
|
-
EDC_DX_REVIEW_LIST_MODEL_APP_LABEL="edc_dx_review",
|
|
46
|
-
SENTRY_ENABLED=False,
|
|
47
|
-
INDEX_PAGE="localhost:8000",
|
|
48
|
-
EXPORT_FOLDER=join(base_dir, "tests", "export"),
|
|
49
|
-
SUBJECT_APP_LABEL="meta_subject",
|
|
50
|
-
SUBJECT_SCREENING_MODEL="meta_screening.subjectscreening",
|
|
51
|
-
SUBJECT_VISIT_MODEL="meta_subject.subjectvisit",
|
|
52
|
-
SUBJECT_VISIT_MISSED_MODEL="meta_subject.subjectvisitmissed",
|
|
53
|
-
SUBJECT_CONSENT_MODEL="meta_consent.subjectconsentv1",
|
|
54
|
-
SUBJECT_REQUISITION_MODEL="meta_subject.subjectrequisition",
|
|
55
|
-
EDC_BLOOD_RESULTS_MODEL_APP_LABEL="meta_subject",
|
|
56
|
-
DEFENDER_ENABLED=False,
|
|
57
|
-
DJANGO_LAB_DASHBOARD_REQUISITION_MODEL="meta_subject.subjectrequisition",
|
|
58
|
-
ADVERSE_EVENT_ADMIN_SITE="meta_ae_admin",
|
|
59
|
-
EDC_DX_LABELS=dict(hiv="HIV", dm="Diabetes", htn="Hypertension", chol="High Cholesterol"),
|
|
60
|
-
ADVERSE_EVENT_APP_LABEL="meta_ae",
|
|
61
|
-
EDC_NAVBAR_DEFAULT="meta_dashboard",
|
|
62
|
-
EDC_PROTOCOL_STUDY_OPEN_DATETIME=datetime(2019, 4, 30, 0, 0, 0, tzinfo=ZoneInfo("UTC")),
|
|
63
|
-
EDC_PROTOCOL_STUDY_CLOSE_DATETIME=datetime(
|
|
64
|
-
2025, 12, 31, 23, 59, 59, tzinfo=ZoneInfo("UTC")
|
|
65
|
-
),
|
|
66
|
-
LANGUAGE_CODE="en",
|
|
67
|
-
LANGUAGES=get_languages(),
|
|
68
|
-
DASHBOARD_BASE_TEMPLATES=dict(
|
|
69
|
-
edc_base_template="edc_dashboard/base.html",
|
|
70
|
-
listboard_base_template="meta_edc/base.html",
|
|
71
|
-
dashboard_base_template="meta_edc/base.html",
|
|
72
|
-
screening_listboard_template="meta_dashboard/screening/listboard.html",
|
|
73
|
-
subject_listboard_template="meta_dashboard/subject/listboard.html",
|
|
74
|
-
subject_dashboard_template="meta_dashboard/subject/dashboard.html",
|
|
75
|
-
subject_review_listboard_template="edc_review_dashboard/subject_review_listboard.html",
|
|
76
|
-
),
|
|
77
|
-
EDC_BOOTSTRAP=3,
|
|
78
|
-
EMAIL_BACKEND="django.core.mail.backends.locmem.EmailBackend",
|
|
79
|
-
EMAIL_CONTACTS={
|
|
80
|
-
"ae_reports": "someone@example.com",
|
|
81
|
-
"data_request": "someone@example.com",
|
|
82
|
-
"data_manager": "someone@example.com",
|
|
83
|
-
"tmg": "someone@example.com",
|
|
84
|
-
},
|
|
85
|
-
EMAIL_ENABLED=True,
|
|
86
|
-
LIVE_SYSTEM=False,
|
|
87
|
-
EDC_SITES_MODULE_NAME="meta_sites",
|
|
88
|
-
EDC_AUTH_SKIP_SITE_AUTHS=True,
|
|
89
|
-
EDC_AUTH_SKIP_AUTH_UPDATER=True,
|
|
90
|
-
EDC_MNSI_MODEL="meta_subject.mnsi",
|
|
91
|
-
INSTALLED_APPS=[
|
|
92
|
-
"django.contrib.admin",
|
|
93
|
-
"django.contrib.auth",
|
|
94
|
-
"django.contrib.contenttypes",
|
|
95
|
-
"django.contrib.sessions",
|
|
96
|
-
"django.contrib.messages",
|
|
97
|
-
"django.contrib.staticfiles",
|
|
98
|
-
"django.contrib.sites",
|
|
99
|
-
"django_pylabels.apps.AppConfig",
|
|
100
|
-
"django_crypto_fields.apps.AppConfig",
|
|
101
|
-
"django_revision.apps.AppConfig",
|
|
102
|
-
# "debug_toolbar",
|
|
103
|
-
"django_extensions",
|
|
104
|
-
"django_db_views",
|
|
105
|
-
"logentry_admin",
|
|
106
|
-
"simple_history",
|
|
107
|
-
"storages",
|
|
108
|
-
"edc_pylabels.apps.AppConfig",
|
|
109
|
-
"edc_sites.apps.AppConfig",
|
|
110
|
-
"edc_action_item.apps.AppConfig",
|
|
111
|
-
"edc_adherence.apps.AppConfig",
|
|
112
|
-
"edc_adverse_event.apps.AppConfig",
|
|
113
|
-
"edc_appointment.apps.AppConfig",
|
|
114
|
-
"edc_auth.apps.AppConfig",
|
|
115
|
-
"edc_crf.apps.AppConfig",
|
|
116
|
-
"edc_he.apps.AppConfig",
|
|
117
|
-
"edc_data_manager.apps.AppConfig",
|
|
118
|
-
"edc_consent.apps.AppConfig",
|
|
119
|
-
"edc_device.apps.AppConfig",
|
|
120
|
-
"edc_dashboard.apps.AppConfig",
|
|
121
|
-
"edc_egfr.apps.AppConfig",
|
|
122
|
-
"edc_export.apps.AppConfig",
|
|
123
|
-
"edc_facility.apps.AppConfig",
|
|
124
|
-
"edc_fieldsets.apps.AppConfig",
|
|
125
|
-
"edc_form_runners.apps.AppConfig",
|
|
126
|
-
"edc_form_validators.apps.AppConfig",
|
|
127
|
-
"edc_reportable.apps.AppConfig",
|
|
128
|
-
"edc_lab.apps.AppConfig",
|
|
129
|
-
"edc_lab_dashboard.apps.AppConfig",
|
|
130
|
-
"edc_label.apps.AppConfig",
|
|
131
|
-
"edc_listboard.apps.AppConfig",
|
|
132
|
-
"edc_locator.apps.AppConfig",
|
|
133
|
-
"edc_pdf_reports.apps.AppConfig",
|
|
134
|
-
"edc_identifier.apps.AppConfig",
|
|
135
|
-
"edc_metadata.apps.AppConfig",
|
|
136
|
-
"edc_model_admin.apps.AppConfig",
|
|
137
|
-
"edc_navbar.apps.AppConfig",
|
|
138
|
-
"edc_notification.apps.AppConfig",
|
|
139
|
-
"edc_offstudy.apps.AppConfig",
|
|
140
|
-
"edc_visit_tracking.apps.AppConfig",
|
|
141
|
-
"edc_visit_schedule.apps.AppConfig",
|
|
142
|
-
"edc_pdutils.apps.AppConfig",
|
|
143
|
-
"edc_protocol.apps.AppConfig",
|
|
144
|
-
"edc_protocol_incident.apps.AppConfig",
|
|
145
|
-
"edc_prn.apps.AppConfig",
|
|
146
|
-
"edc_randomization.apps.AppConfig",
|
|
147
|
-
"edc_registration.apps.AppConfig",
|
|
148
|
-
"edc_subject_dashboard.apps.AppConfig",
|
|
149
|
-
"edc_screening.apps.AppConfig",
|
|
150
|
-
"edc_timepoint.apps.AppConfig",
|
|
151
|
-
"edc_list_data.apps.AppConfig",
|
|
152
|
-
"edc_review_dashboard.apps.AppConfig",
|
|
153
|
-
"edc_refusal.apps.AppConfig",
|
|
154
|
-
"edc_mnsi.apps.AppConfig",
|
|
155
|
-
"edc_unblinding.apps.AppConfig",
|
|
156
|
-
"edc_qareports.apps.AppConfig",
|
|
157
|
-
"edc_qol.apps.AppConfig",
|
|
158
|
-
"edc_dx_review.apps.AppConfig",
|
|
159
|
-
"edc_dx.apps.AppConfig",
|
|
160
|
-
"edc_pharmacy.apps.AppConfig",
|
|
161
|
-
"meta_auth.apps.AppConfig",
|
|
162
|
-
"meta_consent.apps.AppConfig",
|
|
163
|
-
"meta_lists.apps.AppConfig",
|
|
164
|
-
"meta_dashboard.apps.AppConfig",
|
|
165
|
-
"meta_labs.apps.AppConfig",
|
|
166
|
-
"meta_rando.apps.AppConfig",
|
|
167
|
-
"meta_subject.apps.AppConfig",
|
|
168
|
-
"meta_visit_schedule.apps.AppConfig",
|
|
169
|
-
"meta_ae.apps.AppConfig",
|
|
170
|
-
"meta_prn.apps.AppConfig",
|
|
171
|
-
"meta_export.apps.AppConfig",
|
|
172
|
-
"meta_sites.apps.AppConfig",
|
|
173
|
-
"meta_screening.apps.AppConfig",
|
|
174
|
-
"meta_reports.apps.AppConfig",
|
|
175
|
-
"meta_pharmacy.apps.AppConfig",
|
|
176
|
-
"meta_edc.apps.AppConfig",
|
|
177
|
-
"edc_appconfig.apps.AppConfig",
|
|
178
|
-
],
|
|
179
|
-
EDC_SITES_CREATE_DEFAULT=False,
|
|
180
|
-
add_dashboard_middleware=True,
|
|
181
|
-
add_lab_dashboard_middleware=True,
|
|
182
|
-
add_adverse_event_dashboard_middleware=True,
|
|
183
|
-
).settings
|
|
184
|
-
|
|
185
|
-
for k, v in project_settings.items():
|
|
186
|
-
setattr(sys.modules[__name__], k, v)
|
/meta_ae/templates/meta_ae/{bootstrap3/ae_initial_description.html → aeinitial_description.html}
RENAMED
|
File without changes
|
/meta_dashboard/templates/meta_dashboard/{bootstrap3/buttons → buttons}/add_consent_button.html
RENAMED
|
File without changes
|
/meta_dashboard/templates/meta_dashboard/{bootstrap3/buttons → buttons}/dashboard_button.html
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|