Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
__copyright__ = "Copyright © Stichting SciPost (SciPost Foundation)"
__license__ = "AGPL v3"
from django.db import models
from django.utils import timezone
class FellowshipNomination(models.Model):
college = models.ForeignKey(
'colleges.College',
on_delete=models.PROTECT,
related_name='nominations'
)
profile = models.ForeignKey(
'profiles.Profile',
on_delete=models.CASCADE,
related_name='fellowship_nominations'
)
nominated_by = models.ForeignKey(
'scipost.Contributor',
on_delete=models.CASCADE,
related_name='fellowship_nominations_initiated'
)
nominated_on = models.DateTimeField(default=timezone.now)
fellowship = models.OneToOneField(
'colleges.Fellowship',
on_delete=models.CASCADE,
related_name='nomination',
blank=True, null=True
)
class Meta:
ordering = [
'profile',
'college',
]
verbose_name_plural = 'Fellowship Nominations'
def __str__(self):
return (f'{self.profile} to {self.college} '
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
f'on {self.nominated_on.strftime("%Y-%m-%d")}')
class FellowshipNominationEvent(models.Model):
nomination = models.ForeignKey(
'colleges.FellowshipNomination',
on_delete=models.CASCADE,
related_name='events'
)
description = models.TextField()
on = models.DateTimeField(default=timezone.now)
class Meta:
ordering = [
'-on'
]
verbose_name_plural = 'Fellowhips Nomination Events'
def __str__(self):
return f'Event for {nomination}'
class FellowshipNominationVotingRound(models.Model):
nomination = models.ForeignKey(
'colleges.FellowshipNomination',
on_delete=models.CASCADE,
related_name='voting_rounds'
)
eligible_to_vote = models.ManyToManyField(
'colleges.Fellowship',
related_name='voting_rounds_eligible_to_vote_in',
blank=True
)
voting_opens = models.DateTimeField()
voting_deadline = models.DateTimeField()
class Meta:
ordering = [
'nomination__profile__last_name'
]
verbose_name_plural = 'Fellowship Nomination Voting Rounds'
def __str__(self):
return (f'Voting round ({voting_opens.strftime("%Y-%m-%d")} -'
f' {voting_deadline.strftime("%Y-%m-%d")}) for {nomination}')
class FellowshipNominationVote(models.Model):
VOTE_AGREE = 'agree'
VOTE_ABSTAIN = 'abstain'
VOTE_DISAGREE = 'disagree'
VOTE_CHOICES = (
(VOTE_AGREE, 'Agree'),
(VOTE_ABSTAIN, 'Abstain'),
(VOTE_DISAGREE, 'Disagree')
)
voting_round = models.ForeignKey(
'colleges.FellowshipNominationVotingRound',
on_delete=models.CASCADE,
related_name='votes'
)
fellow = models.ForeignKey(
'colleges.Fellowship',
on_delete=models.CASCADE,
related_name='fellowship_nomination_votes'
)
vote = models.CharField(
max_length=16,
choices=VOTE_CHOICES
)
on = models.DateTimeField(blank=True, null=True)
comments = models.TextField(blank=True)
class Meta:
ordering = ['voting_round',]
verbose_name_plural = 'Fellowship Nomination Votes'
class FellowshipNominationDecision(models.Model):
nomination = models.OneToOneField(
'colleges.FellowshipNomination',
on_delete=models.CASCADE,
related_name='decision'
)
OUTCOME_ELECTED = 'elected'
OUTCOME_NOT_ELECTED = 'notelected'
OUTCOME_CHOICES = (
(OUTCOME_ELECTED, 'Elected'),
(OUTCOME_NOT_ELECTED, 'Not elected')
)
outcome = models.CharField(
max_length=16,
choices=OUTCOME_CHOICES
)
fixed_on = models.DateTimeField(default=timezone.now)
class Meta:
ordering = ['nomination',]
verbose_name_plural = 'Fellowship Nomination Decisions'
def __str__(self):
return f'Decision for {nomination}: {self.get_outcome_display()}'
class FellowshipInvitation(models.Model):
nomination = models.OneToOneField(
'colleges.FellowshipNomination',
on_delete=models.CASCADE,
related_name='invitation'
)
invited_on = models.DateTimeField(blank=True, null=True)
RESPONSE_NOT_YET_INVITED = 'notyetinvited'
RESPONSE_INVITED = 'invited'
RESPONSE_REINVITED = 'reinvited'
RESPONSE_MULTIPLY_REINVITED = 'multireinvited'
RESPONSE_UNRESPONSIVE = 'unresponsive'
RESPONSE_ACCEPTED = 'accepted'
RESPONSE_POSTPONED = 'postponed'
RESPONSE_DECLINED = 'declined'
RESPONSE_CHOICES = (
(RESPONSE_NOT_YET_INVITED, 'Not yet invited'),
(RESPONSE_INVITED, 'Invited'),
(RESPONSE_REINVITED, 'Reinvited'),
(RESPONSE_MULTIPLY_REINVITED, 'Multiply reinvited'),
(RESPONSE_UNRESPONSIVE, 'Unresponsive'),
(RESPONSE_ACCEPTED, 'Accepted, for immediate start'),
(RESPONSE_POSTPONED, 'Accepted, but start date postponed'),
(RESPONSE_DECLINED, 'Declined')
)
response = models.CharField(
max_length=16,
choices=RESPONSE_CHOICES,
blank=True
)
postpone_start_to = models.DateField(blank=True)
class Meta:
ordering = ['nomination',]
verbose_name_plural = 'Fellowship Invitations'
def __str__(self):
return f'Invitation for {nomination}'