You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
field=models.PositiveSmallIntegerField(blank=True, help_text='Number of bites reported in the chest.', null=True),
41
+
field=models.PositiveSmallIntegerField(help_text='Number of bites reported in the chest.', null=True),
42
42
),
43
43
migrations.AddField(
44
44
model_name='report',
45
45
name='event_environment',
46
-
field=models.CharField(blank=True, choices=[('indoors', 'Indoors'), ('outdoors', 'Outdoors'), ('vehicle', 'Inside vehicle')], help_text='The environment where the event took place.', max_length=16, null=True),
46
+
field=models.CharField(choices=[('indoors', 'Indoors'), ('outdoors', 'Outdoors'), ('vehicle', 'Inside vehicle')], help_text='The environment where the event took place.', max_length=16, null=True),
47
47
),
48
48
migrations.AddField(
49
49
model_name='report',
50
50
name='event_moment',
51
-
field=models.CharField(blank=True, choices=[('now', 'Now'), ('last_morning', 'Last morning'), ('last_midday', 'Last midday'), ('last_afternoon', 'Last afternoon'), ('last_night', 'Last night')], help_text='The moment of the day when the event took place.', max_length=32, null=True),
51
+
field=models.CharField(choices=[('now', 'Now'), ('last_morning', 'Last morning'), ('last_midday', 'Last midday'), ('last_afternoon', 'Last afternoon'), ('last_night', 'Last night')], help_text='The moment of the day when the event took place.', max_length=32, null=True),
52
52
),
53
53
migrations.AddField(
54
54
model_name='report',
55
55
name='head_bite_count',
56
-
field=models.PositiveSmallIntegerField(blank=True, help_text='Number of bites reported in the head.', null=True),
56
+
field=models.PositiveSmallIntegerField(help_text='Number of bites reported in the head.', null=True),
57
57
),
58
58
migrations.AddField(
59
59
model_name='report',
60
60
name='left_arm_bite_count',
61
-
field=models.PositiveSmallIntegerField(blank=True, help_text='Number of bites reported in the left arm.', null=True),
61
+
field=models.PositiveSmallIntegerField(help_text='Number of bites reported in the left arm.', null=True),
62
62
),
63
63
migrations.AddField(
64
64
model_name='report',
65
65
name='left_leg_bite_count',
66
-
field=models.PositiveSmallIntegerField(blank=True, help_text='Number of bites reported in the left leg.', null=True),
66
+
field=models.PositiveSmallIntegerField(help_text='Number of bites reported in the left leg.', null=True),
67
67
),
68
68
migrations.AddField(
69
69
model_name='report',
70
70
name='right_arm_bite_count',
71
-
field=models.PositiveSmallIntegerField(blank=True, help_text='Number of bites reported in the right arm.', null=True),
71
+
field=models.PositiveSmallIntegerField(help_text='Number of bites reported in the right arm.', null=True),
72
72
),
73
73
migrations.AddField(
74
74
model_name='report',
75
75
name='right_leg_bite_count',
76
-
field=models.PositiveSmallIntegerField(blank=True, help_text='Number of bites reported in the right leg.', null=True),
76
+
field=models.PositiveSmallIntegerField(help_text='Number of bites reported in the right leg.', null=True),
77
77
),
78
78
migrations.AddField(
79
79
model_name='report',
80
80
name='user_perceived_mosquito_abdomen',
81
-
field=models.CharField(blank=True, choices=[('albopictus', 'Aedes albopictus'), ('aegypti', 'Aedes aegypti'), ('japonicus', 'Aedes japonicus'), ('koreicus', 'Aedes koreicus'), ('culex', 'Culex pipiens'), ('other', 'Other')], help_text='The species of mosquito that the abdomen resembles, according to the user.', max_length=16, null=True),
81
+
field=models.CharField(choices=[('albopictus', 'Aedes albopictus'), ('aegypti', 'Aedes aegypti'), ('japonicus', 'Aedes japonicus'), ('koreicus', 'Aedes koreicus'), ('culex', 'Culex pipiens'), ('other', 'Other')], help_text='The species of mosquito that the abdomen resembles, according to the user.', max_length=16, null=True),
82
82
),
83
83
migrations.AddField(
84
84
model_name='report',
85
85
name='user_perceived_mosquito_legs',
86
-
field=models.CharField(blank=True, choices=[('albopictus', 'Aedes albopictus'), ('aegypti', 'Aedes aegypti'), ('japonicus', 'Aedes japonicus'), ('koreicus', 'Aedes koreicus'), ('culex', 'Culex pipiens'), ('other', 'Other')], help_text='The species of mosquito that the leg resembles, according to the user.', max_length=16, null=True),
86
+
field=models.CharField(choices=[('albopictus', 'Aedes albopictus'), ('aegypti', 'Aedes aegypti'), ('japonicus', 'Aedes japonicus'), ('koreicus', 'Aedes koreicus'), ('culex', 'Culex pipiens'), ('other', 'Other')], help_text='The species of mosquito that the leg resembles, according to the user.', max_length=16, null=True),
87
87
),
88
88
migrations.AddField(
89
89
model_name='report',
90
90
name='user_perceived_mosquito_thorax',
91
-
field=models.CharField(blank=True, choices=[('albopictus', 'Aedes albopictus'), ('aegypti', 'Aedes aegypti'), ('japonicus', 'Aedes japonicus'), ('koreicus', 'Aedes koreicus'), ('culex', 'Culex pipiens'), ('other', 'Other')], help_text='The species of mosquito that the thorax resembles, according to the user.', max_length=16, null=True),
91
+
field=models.CharField(choices=[('albopictus', 'Aedes albopictus'), ('aegypti', 'Aedes aegypti'), ('japonicus', 'Aedes japonicus'), ('koreicus', 'Aedes koreicus'), ('culex', 'Culex pipiens'), ('other', 'Other')], help_text='The species of mosquito that the thorax resembles, according to the user.', max_length=16, null=True),
92
92
),
93
93
migrations.AddField(
94
94
model_name='report',
95
95
name='user_perceived_mosquito_specie',
96
-
field=models.CharField(blank=True, choices=[('albopictus', 'Aedes albopictus'), ('aegypti', 'Aedes aegypti'), ('japonicus', 'Aedes japonicus'), ('koreicus', 'Aedes koreicus'), ('culex', 'Culex pipiens'), ('other', 'Other')], help_text='The mosquito specie perceived by the user.', max_length=16, null=True),
96
+
field=models.CharField(choices=[('albopictus', 'Aedes albopictus'), ('aegypti', 'Aedes aegypti'), ('japonicus', 'Aedes japonicus'), ('koreicus', 'Aedes koreicus'), ('culex', 'Culex pipiens'), ('other', 'Other')], help_text='The mosquito specie perceived by the user.', max_length=16, null=True),
97
97
),
98
98
migrations.AddField(
99
99
model_name='report',
100
100
name='bite_count',
101
-
field=models.PositiveSmallIntegerField(blank=True, help_text='Total number of bites reported.', null=True),
101
+
field=models.PositiveSmallIntegerField(editable=False, help_text='Total number of bites reported.', null=True),
0 commit comments