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.BooleanField(default=False, help_text='Allows institutional signers to sign for their members. This will auto-approve this agreement form for members whose institutional official has had their agreement form approved.'),
17
+
),
18
+
migrations.AddField(
19
+
model_name='dataproject',
20
+
name='institutional_signers',
21
+
field=models.BooleanField(default=False, help_text='Allows institutional signers to sign for their members. This will auto-approve agreement forms for members whose institutional official has had their agreement forms approved.'),
institutional_signers=models.BooleanField(default=False, help_text="Allows institutional signers to sign for their members. This will auto-approve this agreement form for members whose institutional official has had their agreement form approved.")
263
264
264
265
# Meta
265
266
created=models.DateTimeField(auto_now_add=True)
@@ -363,6 +364,10 @@ class DataProject(models.Model):
363
364
help_text="Set this to a specific bucket where this project's files should be stored."
364
365
)
365
366
367
+
# Automate approval of members covered by an already-approved institutional signer
368
+
institutional_signers=models.BooleanField(default=False, help_text="Allows institutional signers to sign for their members. This will auto-approve agreement forms for members whose institutional official has had their agreement forms approved.")
369
+
370
+
366
371
# Meta
367
372
created=models.DateTimeField(auto_now_add=True)
368
373
modified=models.DateTimeField(auto_now=True)
@@ -399,19 +404,7 @@ class InstitutionalOfficial(models.Model):
0 commit comments