feat: add project started date to person questions

Resolves #60
This commit is contained in:
James Graham
2021-03-01 19:26:59 +00:00
parent db76d57971
commit 6d5188af72
7 changed files with 44 additions and 0 deletions

View File

@@ -272,6 +272,9 @@ class PersonAnswerSet(AnswerSet):
organisation_started_date = models.DateField(
'Date started at this organisation', blank=False, null=True)
#: When did this person join the project?
project_started_date = models.DateField(blank=False, null=True)
#: Job title this person holds within their organisation
job_title = models.CharField(max_length=255, blank=True, null=False)