Skip to content

Instantly share code, notes, and snippets.

@apiguy
Last active December 19, 2015 07:28
Show Gist options
  • Save apiguy/5918518 to your computer and use it in GitHub Desktop.
Save apiguy/5918518 to your computer and use it in GitHub Desktop.
If template filter for Jinja2
def if_(value, truth_test):
return value if truth_test else None
# Usage
"""
{{ active|if_(row.first) }}
"""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment