clinicedc 2.0.31__py3-none-any.whl → 2.0.32__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.
Potentially problematic release.
This version of clinicedc might be problematic. Click here for more details.
- {clinicedc-2.0.31.dist-info → clinicedc-2.0.32.dist-info}/METADATA +1 -1
- {clinicedc-2.0.31.dist-info → clinicedc-2.0.32.dist-info}/RECORD +5 -5
- edc_qareports/modeladmin_mixins/on_study_missing_values_modeladmin_mixin.py +2 -2
- {clinicedc-2.0.31.dist-info → clinicedc-2.0.32.dist-info}/WHEEL +0 -0
- {clinicedc-2.0.31.dist-info → clinicedc-2.0.32.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: clinicedc
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.32
|
|
4
4
|
Summary: A clinical trials data management framework built on Django
|
|
5
5
|
Keywords: django,clinicedc,edc,clinical trials,research,data management,esource
|
|
6
6
|
Author: Erik van Widenfelt, Jonathan Willitts
|
|
@@ -2740,7 +2740,7 @@ edc_qareports/model_mixins/qa_reports_permissions.py,sha256=aHJHGBoCZh6BnFbTmAcV
|
|
|
2740
2740
|
edc_qareports/modeladmin_mixins/__init__.py,sha256=VAYuotQzLzi1_4LMOGY86fE_QKYrfB4uwOn2V3tkzpA,265
|
|
2741
2741
|
edc_qareports/modeladmin_mixins/list_filters.py,sha256=xAbbtgLzaCM1sHEtDSMMHIhXp4KmrAIREHcOAloXmnI,2326
|
|
2742
2742
|
edc_qareports/modeladmin_mixins/note_modeladmin_mixin.py,sha256=MP_o1bJcaeOBvH32DYBpJ-6A05hF8g2h7Fsu0V2JEDI,3099
|
|
2743
|
-
edc_qareports/modeladmin_mixins/on_study_missing_values_modeladmin_mixin.py,sha256=
|
|
2743
|
+
edc_qareports/modeladmin_mixins/on_study_missing_values_modeladmin_mixin.py,sha256=YM-m7mcARIIy5R_jpTXHJvovccRIt6bYW9obrSTVycM,5310
|
|
2744
2744
|
edc_qareports/modeladmin_mixins/qa_report_modeladmin_mixin.py,sha256=hI22nUr46WDqzZ32xbYHHlRqryzZFd4dQU-HvirkjUg,4443
|
|
2745
2745
|
edc_qareports/models/__init__.py,sha256=pRuBhzApuoGnrCRXqxJTMuNoCtb19JeXPGNte8sJXy8,147
|
|
2746
2746
|
edc_qareports/models/dbviews/__init__.py,sha256=wlvpUL50RQg547kNp3OFu-SKxxn72SVZy90XPm5cx4A,48
|
|
@@ -3407,7 +3407,7 @@ edc_vitals/models/fields/waist_circumference.py,sha256=fZcHFDdEwWLjIVLktKrFCD9UU
|
|
|
3407
3407
|
edc_vitals/models/fields/weight.py,sha256=zo9_9e3Cpu0UqoRbWS-iDkcDo6fK80b1dDQy4x4MyxE,921
|
|
3408
3408
|
edc_vitals/utils.py,sha256=vXid44KUXxeaSyund_y5MNXc5DFJs052_PwUAjszE2k,1384
|
|
3409
3409
|
edc_vitals/validators.py,sha256=vNiElWMs0rRnHRNuVoPLRf0rW_C_0xcfUyep1Y_Si5s,156
|
|
3410
|
-
clinicedc-2.0.
|
|
3411
|
-
clinicedc-2.0.
|
|
3412
|
-
clinicedc-2.0.
|
|
3413
|
-
clinicedc-2.0.
|
|
3410
|
+
clinicedc-2.0.32.dist-info/licenses/LICENSE,sha256=jOtLnuWt7d5Hsx6XXB2QxzrSe2sWWh3NgMfFRetluQM,35147
|
|
3411
|
+
clinicedc-2.0.32.dist-info/WHEEL,sha256=-neZj6nU9KAMg2CnCY6T3w8J53nx1kFGw_9HfoSzM60,79
|
|
3412
|
+
clinicedc-2.0.32.dist-info/METADATA,sha256=IdewcHEHsn5lr6e5b3iaGZE2G_Muxe_3IXaJ2cIEXMs,15786
|
|
3413
|
+
clinicedc-2.0.32.dist-info/RECORD,,
|
|
@@ -64,7 +64,7 @@ class OnStudyMissingValuesModelAdminMixin(
|
|
|
64
64
|
f"&appointment={self.related_visit(obj).appointment.id}"
|
|
65
65
|
f"&requisition={obj.original_id}"
|
|
66
66
|
)
|
|
67
|
-
title = _("Add {}")
|
|
67
|
+
title = _("Add {}").format(crf_model_cls._meta.verbose_name)
|
|
68
68
|
label = _("Add CRF")
|
|
69
69
|
crf_button = render_to_string(
|
|
70
70
|
"edc_qareports/columns/add_button.html",
|
|
@@ -80,7 +80,7 @@ class OnStudyMissingValuesModelAdminMixin(
|
|
|
80
80
|
f"{url}?next={self.admin_site.name}:"
|
|
81
81
|
f"{self.model._meta.label_lower.replace('.', '_')}_changelist"
|
|
82
82
|
)
|
|
83
|
-
title = _("Change {}")
|
|
83
|
+
title = _("Change {}").format(crf_model_cls._meta.verbose_name)
|
|
84
84
|
label = _("Change CRF")
|
|
85
85
|
crf_button = render_to_string(
|
|
86
86
|
"edc_qareports/columns/change_button.html",
|
|
File without changes
|
|
File without changes
|