Q: How to create a bi-weekly condition using Jinja?
Explanation:
You can use the following jinja to check if the week is odd or even in your campaigns. It will allow to skip or alter sending depending on the week number.
Solution:
{% set week = time | from_timestamp('%W') %}
{% set remainder = week %2 %}
{% if remainder == 0 %}
True
{% else %}
False
{% endif %}