-
-
Hallo ik ben {{person.name}}
" {{person.nickname}}"
Standaard Informatie
Ik woon in {{ person.customData.Woonplaats }}
Mijn huidige opleiding is {{ person.customData.Opleiding }}
Ik werk met alle liefde voor de {{ person.customData.Werk }}
Dit zijn mijn hobbies
-
{% for hobby in person.customData.Hobbies %}
{{ hobby }}
{% endfor %}
Mijn Leerdoelen
-
{% for goal in person.customData.Leerdoelen %}
Leerdoel {{forloop.index}}:
{{ goal }}
{% endfor %}
Data uit de klas
Total number of people: {{stats.totalCount}}
-
{% for nickname in stats.allNicknames %}
{{nickname}}
{% endfor %}
Random bio:
{{stats.randomBio.bio}}
-{{stats.randomBio.name}}-
Next Birthday
{% if nextBirthday.days == 0 %}{{nextBirthday.name}} has their birthday today!!!
{% else %}{{nextBirthday.name}} has their birthday in {{nextBirthday.days}} days!
{% endif %}Birthday date: {{nextBirthday.date | date: "%B %d"}}
They will be {{nextBirthday.nextAge}} on this day!!