Methods

MethodReturn typeDescription
countintegerThe amount of person drops in the people drop.
firstperson dropReturns the person drop of the first person in the people drop.

Special drops

DropDescription
DirectorsA people drop with only the directors.
ShareholdersA people drop with only the shareholders.
count:                    {{ period.people.count }}
first:                    {{ period.people.first }}
directors:                {{ period.directors.count }}
shareholders:             {{ period.shareholders.count }}
Output

Directors filters

FilterDescription
active_as_directorFilter the directors which are active during the current bookyear.
active_as_director_onFilter the directors which are active in a specific date.
{% assign active_directors_bookyear = period.directors.active_as_director %}
{% for person in active_directors_bookyear %}
  {{ person.name }}
{% endfor %}


{% assign active_directors_today = period.directors | active_as_director_on:'today' %}
{% for person in active_directors_today %}
  {{ person.name }}
{% endfor %}