Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions elections/code/infrastructure/active_records/Candidate.php
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
1 change: 1 addition & 0 deletions elections/code/infrastructure/active_records/Election.php
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down