I have a Jinja template where I want to display a message for users that were created before a specified date. I only have control over the template file. What are my options to accomplish something like the following.
{% if sub.start_date < datetime.datetime(2015,09,30) -%}
Hello Early Members!
{% endif -%}
Obviously the code above does not work since datetime will not be recognized. So what are my options here?