Jinja Template

Jinja2 is a full-featured template engine for Python. It has full unicode support, an optional integrated sandboxed execution environment, widely used and BSD licensed.

Jinja Template Usage in LogicHub

  • You can provide jinja-templated string inputs at many places in the LogicHub product. For example: Some action inputs are jinja-templated
  • You can define all your custom logic (if-else etc) that is supported by jinja2-templating engine.
  • Most common usage is you have a jinja-templated input text box and you want to substitute the values from one or more columns that can differ for each row. For example: Let's say you were creating multiple cases in LogicHub through Case Management and you want the case-title to be prefixed LHUB- followed by some id that is unique per row in the parentTable. the corresponding jinja-template for Case Title can be on the following lines:
LHUB-{{id_column}}

where id_column is a column in the parentTable

For more information, see Jinja Templates.


© 2017-2021 LogicHub®. All Rights Reserved.