|
📅 DATE & TIME
{{ frappe.format_date(event_doc.start_date) }}
{% if event_doc.start_date != event_doc.end_date %}
- {{ frappe.format_date(event_doc.end_date) }}
{% endif %}
{{ frappe.utils.format_time(event_doc.start_time, "hh:mm a") }}
{% if event_doc.end_time %}
- {{ frappe.utils.format_time(event_doc.end_time, "hh:mm a") }}
{% endif %}
{{ event_doc.time_zone or "" }}
|
📍 VENUE
{{ event_doc.venue }}
{{ frappe.db.get_value("Event Venue", event_doc.venue, "address") }}
|