Skip to content

Instantly share code, notes, and snippets.

@tbrooke
Last active November 12, 2020 03:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tbrooke/ec842bcee2073dcc8cd8d356ae688b41 to your computer and use it in GitHub Desktop.
Save tbrooke/ec842bcee2073dcc8cd8d356ae688b41 to your computer and use it in GitHub Desktop.
## Mandatory code block that determines interview order
officer.gather()
if officer[i].other_employers == True:
officer[i].employers
owner_names
## Question section
---
question: |
Complete one form for each(proposed) Director or Officer for
% if management_structure == "Another company":
${manager_corp.name.text}
% else:
${issuer.name}
% endif:
subquestion: |
By “officer,” we mean a President, Vice-President, Secretary, Treasurer, Chief Financial Officer, Comptroller, or Chief Accounting Officer.Include anyone who serves in the role of an officer or director even if he or she doesn’t have the title. If your Company is a limited liability company, include any individual who is a manager or an officer. If your LLC is managed by its members, include all members. If your Company is a general partnership, include any individual who is a general partner or an officer.Include officers and directors of the SPV if you are using one (and if they are different).
continue button field: officer.there_are_any
---
mandatory: True
code: |
officer[i].name.first
officer[i].name.middle
officer[i].name.last
officer[i].position
officer[i].how_long
officer[i].experience
officer[i].occupation
officer[i].other_employers
officer[i].employers
officer[i].complete = True
---
mandatory: True
question: |
What is the name of the ${ ordinal(i) }
officer?
subquestion:
We also need the office that they hold and how long they have held it.
fields:
- First Name: officer[i].name.first
- Middle Name: officer[i].name.middle
required: False
- Last Name: officer[i].name.last
- Position: officer[i].position
help: |
Your role would be your title such as President, Vice President, Chief Financial Officer, Secretary, etc.
- How long have you held this position? officer[i].how_long
---
question: |
We need to explore
${ officer[i].possessive('business experience.') }
subquestion:
We need a short one-sentence description of ${ officer[i].possessive('business experience.') } business experience and principal occupation over the last 3 years. Also indicate if they have been employed by anyone else
fields:
- Describe business experience: officer[i].experience
input type: area
- Occupation last 3 years: officer[i].occupation
input type: area
- Check this box if you have worked for another employer in the last 3 years?: officer[i].other_employers
datatype: yesno
---
question: |
What other employers has ${ officer[i].name.full() } worked for in the last 3 years?
fields:
- Employers: officer[i].employers
input type: area
---
question: |
Are there any other officers?
yesno: officer.there_is_another
---
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment