clinicedc 2.0.26__py3-none-any.whl → 2.0.27__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.26.dist-info → clinicedc-2.0.27.dist-info}/METADATA +1 -1
- {clinicedc-2.0.26.dist-info → clinicedc-2.0.27.dist-info}/RECORD +6 -6
- edc_constants/choices.py +26 -0
- edc_constants/constants.py +10 -0
- {clinicedc-2.0.26.dist-info → clinicedc-2.0.27.dist-info}/WHEEL +0 -0
- {clinicedc-2.0.26.dist-info → clinicedc-2.0.27.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.27
|
|
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
|
|
@@ -611,8 +611,8 @@ edc_consent/views/home_view.py,sha256=TRqEcysATqzVGTHPhn6HxPsWjIGAPDwYaCylIJOWM7
|
|
|
611
611
|
edc_consent/wsgi.py,sha256=IuY8oXnc033507PBykHhWuZxUDpg4MaMvTmVSM6uJ54,390
|
|
612
612
|
edc_constants/__init__.py,sha256=jHg-osFAN-UgMbnvV1MnQ0sD37lq0QisRbJ_oqrGUdw,84
|
|
613
613
|
edc_constants/apps.py,sha256=H3gCke2ogPgCL2sSD44Nb56ZBurei4uXWEhcUTdIlYI,318
|
|
614
|
-
edc_constants/choices.py,sha256=
|
|
615
|
-
edc_constants/constants.py,sha256=
|
|
614
|
+
edc_constants/choices.py,sha256=OvsfqZvb872tANzN0LMLgGLMkqaqRRb1FooXBcTr4cY,19638
|
|
615
|
+
edc_constants/constants.py,sha256=Utlax5PHmnKXe0DQebnz7aEwlE1KM9ItUEET6jPqgN0,5585
|
|
616
616
|
edc_constants/context_processor.py,sha256=JwfB03QXX9AFcVI_-ohdNVTGWpP2DDpH_t_kdiAe-7s,809
|
|
617
617
|
edc_constants/date_constants.py,sha256=5XrhZHz0caO1qghW4_r2slDMVdHsz6QG8OfSo2mMKSg,616
|
|
618
618
|
edc_constants/disease_constants.py,sha256=ZXzwomCaDMtrghHkAHdUUuNbZloIFn0lnG0-nZfdEvE,743
|
|
@@ -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.27.dist-info/licenses/LICENSE,sha256=jOtLnuWt7d5Hsx6XXB2QxzrSe2sWWh3NgMfFRetluQM,35147
|
|
3411
|
+
clinicedc-2.0.27.dist-info/WHEEL,sha256=-neZj6nU9KAMg2CnCY6T3w8J53nx1kFGw_9HfoSzM60,79
|
|
3412
|
+
clinicedc-2.0.27.dist-info/METADATA,sha256=8L752Me7nR7AH9xGK6t20ujMHs_CD8Tkb2cUPIURzFo,15787
|
|
3413
|
+
clinicedc-2.0.27.dist-info/RECORD,,
|
edc_constants/choices.py
CHANGED
|
@@ -4,6 +4,7 @@ from .constants import (
|
|
|
4
4
|
ABNORMAL,
|
|
5
5
|
ABSENT,
|
|
6
6
|
AFTERNOON,
|
|
7
|
+
AGREE,
|
|
7
8
|
ALIVE,
|
|
8
9
|
ALWAYS,
|
|
9
10
|
ANYTIME,
|
|
@@ -11,8 +12,11 @@ from .constants import (
|
|
|
11
12
|
COMPLETE,
|
|
12
13
|
DEAD,
|
|
13
14
|
DECLINED,
|
|
15
|
+
DIFFICULT,
|
|
16
|
+
DISAGREE,
|
|
14
17
|
DONT_KNOW,
|
|
15
18
|
DWTA,
|
|
19
|
+
EASY,
|
|
16
20
|
EVENING,
|
|
17
21
|
FALSE,
|
|
18
22
|
FASTING,
|
|
@@ -26,6 +30,7 @@ from .constants import (
|
|
|
26
30
|
MORNING,
|
|
27
31
|
NAIVE,
|
|
28
32
|
NEG,
|
|
33
|
+
NEUTRAL,
|
|
29
34
|
NEVER,
|
|
30
35
|
NO,
|
|
31
36
|
NON_FASTING,
|
|
@@ -51,9 +56,13 @@ from .constants import (
|
|
|
51
56
|
REFUSED,
|
|
52
57
|
SMOKER,
|
|
53
58
|
SOMETIMES,
|
|
59
|
+
STRONGLY_AGREE,
|
|
60
|
+
STRONGLY_DISAGREE,
|
|
54
61
|
TBD,
|
|
55
62
|
TRUE,
|
|
56
63
|
UNKNOWN,
|
|
64
|
+
VERY_DIFFICULT,
|
|
65
|
+
VERY_EASY,
|
|
57
66
|
VERY_OFTEN,
|
|
58
67
|
WEEKDAYS,
|
|
59
68
|
WEEKENDS,
|
|
@@ -833,3 +842,20 @@ WHYNOPARTICIPATE_CHOICE = (
|
|
|
833
842
|
("OTHER", _("Other, specify:")),
|
|
834
843
|
("not_answering", _("Don't want to answer")),
|
|
835
844
|
)
|
|
845
|
+
|
|
846
|
+
|
|
847
|
+
DISAGREE_TO_AGREE_CHOICE = (
|
|
848
|
+
(STRONGLY_DISAGREE, _("Strongly disagree")),
|
|
849
|
+
(DISAGREE, _("disagree")),
|
|
850
|
+
(NEUTRAL, _("Neutral")),
|
|
851
|
+
(AGREE, _("Agree")),
|
|
852
|
+
(STRONGLY_AGREE, _("Strongly agree")),
|
|
853
|
+
)
|
|
854
|
+
|
|
855
|
+
DIFFICULT_TO_EASY_CHOICE = (
|
|
856
|
+
(VERY_DIFFICULT, _("Very difficult")),
|
|
857
|
+
(DIFFICULT, _("Difficult")),
|
|
858
|
+
(NEUTRAL, _("Neutral")),
|
|
859
|
+
(EASY, _("Easy")),
|
|
860
|
+
(VERY_EASY, _("Very easy")),
|
|
861
|
+
)
|
edc_constants/constants.py
CHANGED
|
@@ -8,6 +8,7 @@ ABNORMAL = "ABNORMAL"
|
|
|
8
8
|
ABSENT = "absent"
|
|
9
9
|
ADDITIONAL = True
|
|
10
10
|
AFTERNOON = "afternoon"
|
|
11
|
+
AGREE = "agree"
|
|
11
12
|
ALIVE = "alive"
|
|
12
13
|
ALWAYS = "always"
|
|
13
14
|
ANONYMOUS = "anonymous"
|
|
@@ -40,6 +41,7 @@ DEFAULTER = "defaulter"
|
|
|
40
41
|
DELETE = "DELETE"
|
|
41
42
|
DELIVERY = "delivery"
|
|
42
43
|
DIABETES = "diabetes"
|
|
44
|
+
DISAGREE = "disagree"
|
|
43
45
|
DIVORCED = "divorced"
|
|
44
46
|
DM = "dm"
|
|
45
47
|
DONE = "done"
|
|
@@ -109,6 +111,7 @@ MULTI_MORBIDITY = "multi"
|
|
|
109
111
|
NAIVE = "NAIVE"
|
|
110
112
|
NCD = "NCD"
|
|
111
113
|
NEG = "NEG"
|
|
114
|
+
NEUTRAL = "neutral"
|
|
112
115
|
NEVER = "NEVER"
|
|
113
116
|
NEW = "New"
|
|
114
117
|
NEW_FIELD = "new_field"
|
|
@@ -192,6 +195,8 @@ SMOKER = "smoker"
|
|
|
192
195
|
SOMETIMES = "sometimes"
|
|
193
196
|
STEROIDS = "steroids"
|
|
194
197
|
STOPPED = "stopped"
|
|
198
|
+
STRONGLY_AGREE = "strongly_agree"
|
|
199
|
+
STRONGLY_DISAGREE = "strongly_disagree"
|
|
195
200
|
STUDY_DEFINED_TIMEPOINT = "study_defined_timepoint"
|
|
196
201
|
SUBJECT = "subject"
|
|
197
202
|
SYSTEMATIC = "systematic"
|
|
@@ -238,3 +243,8 @@ THURSDAY = "thursday"
|
|
|
238
243
|
FRIDAY = "friday"
|
|
239
244
|
SATURDAY = "saturday"
|
|
240
245
|
SUNDAY = "sunday"
|
|
246
|
+
|
|
247
|
+
VERY_DIFFICULT = "very_difficult"
|
|
248
|
+
DIFFICULT = "difficult"
|
|
249
|
+
EASY = "easy"
|
|
250
|
+
VERY_EASY = "very_easy"
|
|
File without changes
|
|
File without changes
|