{% if event.time_left.days >= 1 %}
{{ event.time.strftime('%Y-%m-%d %H:%M') }}
{% else %}
{{ (event.time_left.total_seconds() // 3600) | int }}h {{ ((event.time_left.total_seconds() % 3600) // 60) | int }}m
{% endif %}
{{ event.name }}
{% autoescape false %}
{{ escape(event.description).replace('\n', '
') }}
{% endautoescape %}