Skip to content

Instantly share code, notes, and snippets.

@rbrady
Created March 9, 2017 13:50
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 rbrady/38add02a88863f434e59a397b9f6b4f6 to your computer and use it in GitHub Desktop.
Save rbrady/38add02a88863f434e59a397b9f6b4f6 to your computer and use it in GitHub Desktop.
Sample Jinja Template
{{ board.name }}
--------------------
{% for list_item in board.open_lists() %}
- {{ list_item.name }}
{% for card in list_item.list_cards() %}
- {{ card.name }}
{% endfor %}
{% endfor %}
----------------------
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment