[Fixed]-If else statement to check for date entered

1👍

You should be able to do something like
{% if dates.course_date %}

0👍

Without further context I’d imagine that the course_date is a date, and they never equal strings which is why you always get the date

{% if dates.course_date %}

Should be enough to resolve the issue

👤Sayse

Leave a comment