Skip to content

Instantly share code, notes, and snippets.

@danielmurphy
Created October 1, 2011 17:16
Show Gist options
  • Save danielmurphy/1256347 to your computer and use it in GitHub Desktop.
Save danielmurphy/1256347 to your computer and use it in GitHub Desktop.
Custom Report Example
{% for category in plan.ministry.plan_person_categories %}
{% for position in category.positions %}
{% if postion.name == "Monitor Engineer" %}
Your monitor engineer today is: {% for person in position.people %}{{ person.name }}{% endfor %}
{% endif %}
{% endfor %}
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment