{% for event in events %}
{% if event.isCancelled == true %}
Canceled
{% elsif event.isSoldOut == true %}
Sold Out
{% elsif event.isClosed == true %}
Closed
{% endif %}

{{event.Event_Title}}

{% if showCampus == 'True' %} {% if event.Location_Name %}
{{event.Location_Name}}
{% else %}
{{event.Congregation_Name}}
{% endif %} {% endif %}
{{event.Event_Start_Date | date: '%A - %B %d, %Y @ %l:%M %P'}}
{% endfor %}