Lava Filters - Steps

Category:Person

Description:Returns a filtered list of steps that the person has engaged with.
Input: "CurrentPerson": { ... }
Lava: {% assign steps = CurrentPerson | Steps: '1','Complete' %}
    {% for step in steps %}
  • {{ step.StepType.Name }} ( {{ step.StepStatus.Name }} )
  • {% endfor %}
Output:
  • Baptism ( Complete )
  • Starting Point Class ( Complete )
  • Small Group ( Complete )