This commit is contained in:
Oliver Davies 2019-11-01 19:17:53 +00:00
parent 9032987d20
commit bfbcda8697

View file

@ -1,9 +1,4 @@
{% macro talkEventLocation(eventData, event) %}
{% if eventData.location %}
in {{ eventData.location }}
{% endif %}
{% if event.online %}
(online)
{% endif %}
{{ eventData.location ? 'in ' ~ eventData.location }}
{{ event.online ? ' (online)' }}
{% endmacro %}