diff --git a/elections/code/infrastructure/active_records/Candidate.php b/elections/code/infrastructure/active_records/Candidate.php index 8ccc40a22..26b89a757 100644 --- a/elections/code/infrastructure/active_records/Candidate.php +++ b/elections/code/infrastructure/active_records/Candidate.php @@ -19,6 +19,7 @@ class Candidate extends DataObject implements ICandidate 'IsGoldMemberCandidate' => 'Boolean', // Q and A (Candidate's answer to the application question) 'RelationshipToOpenStack' => 'HTMLText', + 'Bio' => 'HTMLText', 'Experience' => 'HTMLText', 'BoardsRole' => 'HTMLText', 'TopPriority' => 'HTMLText', diff --git a/elections/code/infrastructure/active_records/Election.php b/elections/code/infrastructure/active_records/Election.php index e874604bc..5b93449b1 100644 --- a/elections/code/infrastructure/active_records/Election.php +++ b/elections/code/infrastructure/active_records/Election.php @@ -246,6 +246,7 @@ function getCMSFields() new CheckboxField('HasAcceptedNomination', 'Has Accepted Nomination?'), new CheckboxField('IsGoldMemberCandidate', 'Is Gold Member Candidate?'), new HtmlEditorField('RelationshipToOpenStack', 'Relationship To OpenStack'), + new HtmlEditorField('Bio', 'Bio'), new HtmlEditorField('Experience', 'Experience'), new HtmlEditorField('BoardsRole', 'Boards Role'), new HtmlEditorField('TopPriority', 'Top Priority')