10 lines
207 B
Twig
10 lines
207 B
Twig
{% macro talkEventLocation(eventData, event) %}
|
|
{% if eventData.location %}
|
|
in {{ eventData.location }}
|
|
{% endif %}
|
|
|
|
{% if event.online %}
|
|
(online)
|
|
{% endif %}
|
|
{% endmacro %}
|